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

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: Don't add delay param to public API just yet 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/EventHandler.cpp » ('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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE; 153 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE;
154 154
155 virtual void formStateDidChange(const Node*) OVERRIDE { } 155 virtual void formStateDidChange(const Node*) OVERRIDE { }
156 156
157 virtual void setCursor(const Cursor&) OVERRIDE { } 157 virtual void setCursor(const Cursor&) OVERRIDE { }
158 158
159 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) OVERRIDE { } 159 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) OVERRIDE { }
160 virtual void scheduleCompositingLayerFlush() OVERRIDE { } 160 virtual void scheduleCompositingLayerFlush() OVERRIDE { }
161 161
162 virtual void needTouchEvents(bool) OVERRIDE { } 162 virtual void needTouchEvents(bool) OVERRIDE { }
163 virtual void setTouchAction(int touchId, TouchAction touchActions) OVERRIDE { };
163 164
164 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { } 165 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { }
165 166
166 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE RRIDE { return false; } 167 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE RRIDE { return false; }
167 168
168 virtual bool isEmptyChromeClient() const OVERRIDE { return true; } 169 virtual bool isEmptyChromeClient() const OVERRIDE { return true; }
169 170
170 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERR IDE { } 171 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERR IDE { }
171 172
172 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& boun ds, 173 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& boun ds,
(...skipping 166 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/EventHandler.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698