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

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

Issue 1639363002: Move have_wheel_event_handlers to WebLayerTreeView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove blank line Created 4 years, 10 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 void openTextDataListChooser(HTMLInputElement&) override; 150 void openTextDataListChooser(HTMLInputElement&) override;
151 151
152 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; 152 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override;
153 153
154 void setCursor(const Cursor&, LocalFrame* localRoot) override {} 154 void setCursor(const Cursor&, LocalFrame* localRoot) override {}
155 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } 155 Cursor lastSetCursorForTesting() const override { return pointerCursor(); }
156 156
157 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {} 157 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {}
158 158
159 void needTouchEvents(bool) override {} 159 void needTouchEvents(bool) override {}
160 void setHaveWheelEventHandlers(bool) override {}
161 bool haveWheelEventHandlers() const override { return false; }
162
160 void setTouchAction(TouchAction) override {} 163 void setTouchAction(TouchAction) override {}
161 164
162 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem ent>>&, LocalFrame*) override {} 165 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem ent>>&, LocalFrame*) override {}
163 166
164 void annotatedRegionsChanged() override {} 167 void annotatedRegionsChanged() override {}
165 String acceptLanguages() override; 168 String acceptLanguages() override;
166 169
167 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} 170 void registerPopupOpeningObserver(PopupOpeningObserver*) override {}
168 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} 171 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {}
169 172
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 ~EmptyDragClient() override {} 334 ~EmptyDragClient() override {}
332 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 335 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
333 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 336 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
334 }; 337 };
335 338
336 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 339 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
337 340
338 } // namespace blink 341 } // namespace blink
339 342
340 #endif // EmptyClients_h 343 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698