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

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

Issue 1055683003: (NOT FOR REVIEW) Distinguish between touch and touchmove handler presence (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix loading Created 5 years, 3 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 void openTextDataListChooser(HTMLInputElement&) override; 145 void openTextDataListChooser(HTMLInputElement&) override;
146 146
147 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; 147 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override;
148 148
149 void setCursor(const Cursor&) override {} 149 void setCursor(const Cursor&) override {}
150 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } 150 Cursor lastSetCursorForTesting() const override { return pointerCursor(); }
151 151
152 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {} 152 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {}
153 153
154 void needTouchEvents(bool) override {} 154 void needTouchEvents(bool) override {}
155 void needTouchMoveEvents(bool) override {}
155 void setTouchAction(TouchAction) override {} 156 void setTouchAction(TouchAction) override {}
156 157
157 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem ent>>&, LocalFrame*) override {} 158 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem ent>>&, LocalFrame*) override {}
158 159
159 void annotatedRegionsChanged() override {} 160 void annotatedRegionsChanged() override {}
160 String acceptLanguages() override; 161 String acceptLanguages() override;
161 162
162 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} 163 void registerPopupOpeningObserver(PopupOpeningObserver*) override {}
163 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} 164 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {}
164 }; 165 };
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 ~EmptyDragClient() override {} 324 ~EmptyDragClient() override {}
324 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 325 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
325 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 326 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
326 }; 327 };
327 328
328 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 329 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
329 330
330 } // namespace blink 331 } // namespace blink
331 332
332 #endif // EmptyClients_h 333 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698