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

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

Issue 16507017: Initial touch-action main thread implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: merge with trunk - no changes Created 7 years, 1 month 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
« no previous file with comments | « no previous file | Source/core/page/ChromeClient.h » ('j') | Source/core/page/ChromeClient.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE; 155 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE;
156 156
157 virtual void formStateDidChange(const Node*) OVERRIDE { } 157 virtual void formStateDidChange(const Node*) OVERRIDE { }
158 158
159 virtual void setCursor(const Cursor&) OVERRIDE { } 159 virtual void setCursor(const Cursor&) OVERRIDE { }
160 160
161 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) OVERRIDE { } 161 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) OVERRIDE { }
162 virtual void scheduleCompositingLayerFlush() OVERRIDE { } 162 virtual void scheduleCompositingLayerFlush() OVERRIDE { }
163 163
164 virtual void needTouchEvents(bool) OVERRIDE { } 164 virtual void needTouchEvents(bool) OVERRIDE { }
165 virtual void setTouchAction(TouchAction touchActions) OVERRIDE { };
esprehn 2013/11/21 16:26:29 This is confusingly named, it's all singular excep
Rick Byers 2013/11/21 22:09:29 Yes, sorry - I switched from plural to singular bu
165 166
166 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { } 167 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { }
167 168
168 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE RRIDE { return false; } 169 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE RRIDE { return false; }
169 170
170 virtual bool isEmptyChromeClient() const OVERRIDE { return true; } 171 virtual bool isEmptyChromeClient() const OVERRIDE { return true; }
171 172
172 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERR IDE { } 173 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERR IDE { }
173 174
174 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& boun ds, 175 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& boun ds,
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 virtual int backListCount() OVERRIDE { return 0; } 340 virtual int backListCount() OVERRIDE { return 0; }
340 virtual int forwardListCount() OVERRIDE { return 0; } 341 virtual int forwardListCount() OVERRIDE { return 0; }
341 virtual int backForwardListCount() OVERRIDE { return 0; } 342 virtual int backForwardListCount() OVERRIDE { return 0; }
342 }; 343 };
343 344
344 void fillWithEmptyClients(Page::PageClients&); 345 void fillWithEmptyClients(Page::PageClients&);
345 346
346 } 347 }
347 348
348 #endif // EmptyClients_h 349 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/page/ChromeClient.h » ('j') | Source/core/page/ChromeClient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698