Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Fixed the comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 const FrameLoadRequest&, 95 const FrameLoadRequest&,
96 const WindowFeatures&, 96 const WindowFeatures&,
97 NavigationPolicy) override { 97 NavigationPolicy) override {
98 return nullptr; 98 return nullptr;
99 } 99 }
100 void Show(NavigationPolicy) override {} 100 void Show(NavigationPolicy) override {}
101 101
102 void DidOverscroll(const FloatSize&, 102 void DidOverscroll(const FloatSize&,
103 const FloatSize&, 103 const FloatSize&,
104 const FloatPoint&, 104 const FloatPoint&,
105 const FloatSize&) override {} 105 const FloatSize&,
106 const WebScrollBoundaryBehavior&) override {}
106 107
107 void BeginLifecycleUpdates() override {} 108 void BeginLifecycleUpdates() override {}
108 109
109 bool HadFormInteraction() const override { return false; } 110 bool HadFormInteraction() const override { return false; }
110 111
111 void StartDragging(LocalFrame*, 112 void StartDragging(LocalFrame*,
112 const WebDragData&, 113 const WebDragData&,
113 WebDragOperationsMask, 114 WebDragOperationsMask,
114 const WebImage& drag_image, 115 const WebImage& drag_image,
115 const WebPoint& drag_image_offset) {} 116 const WebPoint& drag_image_offset) {}
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 Frame* NextSibling() const override { return nullptr; } 475 Frame* NextSibling() const override { return nullptr; }
475 Frame* FirstChild() const override { return nullptr; } 476 Frame* FirstChild() const override { return nullptr; }
476 void FrameFocused() const override {} 477 void FrameFocused() const override {}
477 }; 478 };
478 479
479 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); 480 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&);
480 481
481 } // namespace blink 482 } // namespace blink
482 483
483 #endif // EmptyClients_h 484 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698