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

Side by Side Diff: Source/WebKit/chromium/src/ChromeClientImpl.h

Issue 14296003: Remove TOUCH_EVENTS and TOUCH_EVENT_TRACKING compile-time flags. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase. Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/WebKit/chromium/features.gypi ('k') | Source/WebKit/chromium/src/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::ColorC hooserClient*, const WebCore::Color&) OVERRIDE; 146 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::ColorC hooserClient*, const WebCore::Color&) OVERRIDE;
147 PassOwnPtr<WebColorChooser> createWebColorChooser(WebColorChooserClient*, co nst WebColor&); 147 PassOwnPtr<WebColorChooser> createWebColorChooser(WebColorChooserClient*, co nst WebColor&);
148 #endif 148 #endif
149 virtual PassRefPtr<WebCore::DateTimeChooser> openDateTimeChooser(WebCore::Da teTimeChooserClient*, const WebCore::DateTimeChooserParameters&) OVERRIDE; 149 virtual PassRefPtr<WebCore::DateTimeChooser> openDateTimeChooser(WebCore::Da teTimeChooserClient*, const WebCore::DateTimeChooserParameters&) OVERRIDE;
150 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>) ; 150 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>) ;
151 virtual void loadIconForFiles(const Vector<WTF::String>&, WebCore::FileIconL oader*); 151 virtual void loadIconForFiles(const Vector<WTF::String>&, WebCore::FileIconL oader*);
152 virtual void enumerateChosenDirectory(WebCore::FileChooser*); 152 virtual void enumerateChosenDirectory(WebCore::FileChooser*);
153 virtual void setCursor(const WebCore::Cursor&); 153 virtual void setCursor(const WebCore::Cursor&);
154 virtual void setCursorHiddenUntilMouseMoves(bool); 154 virtual void setCursorHiddenUntilMouseMoves(bool);
155 virtual void formStateDidChange(const WebCore::Node*); 155 virtual void formStateDidChange(const WebCore::Node*);
156 #if ENABLE(TOUCH_EVENTS)
157 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE; 156 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE;
158 #endif
159 157
160 virtual WebCore::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE ; 158 virtual WebCore::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE ;
161 159
162 // Pass 0 as the GraphicsLayer to detatch the root layer. 160 // Pass 0 as the GraphicsLayer to detatch the root layer.
163 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer *); 161 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer *);
164 162
165 // Sets a flag to specify that the view needs to be updated, so we need 163 // Sets a flag to specify that the view needs to be updated, so we need
166 // to do an eager layout before the drawing. 164 // to do an eager layout before the drawing.
167 virtual void scheduleCompositingLayerFlush(); 165 virtual void scheduleCompositingLayerFlush();
168 166
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 private: 247 private:
250 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 248 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
251 249
252 WebViewImpl* m_webView; 250 WebViewImpl* m_webView;
253 }; 251 };
254 #endif 252 #endif
255 253
256 } // namespace WebKit 254 } // namespace WebKit
257 255
258 #endif 256 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/features.gypi ('k') | Source/WebKit/chromium/src/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698