| 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) |
| 156 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE; | 157 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE; |
| 158 #endif |
| 157 | 159 |
| 158 virtual WebCore::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE
; | 160 virtual WebCore::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE
; |
| 159 | 161 |
| 160 // Pass 0 as the GraphicsLayer to detatch the root layer. | 162 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| 161 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer
*); | 163 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer
*); |
| 162 | 164 |
| 163 // Sets a flag to specify that the view needs to be updated, so we need | 165 // Sets a flag to specify that the view needs to be updated, so we need |
| 164 // to do an eager layout before the drawing. | 166 // to do an eager layout before the drawing. |
| 165 virtual void scheduleCompositingLayerFlush(); | 167 virtual void scheduleCompositingLayerFlush(); |
| 166 | 168 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 private: | 249 private: |
| 248 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 250 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
| 249 | 251 |
| 250 WebViewImpl* m_webView; | 252 WebViewImpl* m_webView; |
| 251 }; | 253 }; |
| 252 #endif | 254 #endif |
| 253 | 255 |
| 254 } // namespace WebKit | 256 } // namespace WebKit |
| 255 | 257 |
| 256 #endif | 258 #endif |
| OLD | NEW |