| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |