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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE; | 127 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE; |
128 virtual void layoutUpdated(WebCore::LocalFrame*) const OVERRIDE; | 128 virtual void layoutUpdated(WebCore::LocalFrame*) const OVERRIDE; |
129 virtual void mouseDidMoveOverElement( | 129 virtual void mouseDidMoveOverElement( |
130 const WebCore::HitTestResult&, unsigned modifierFlags) OVERRIDE; | 130 const WebCore::HitTestResult&, unsigned modifierFlags) OVERRIDE; |
131 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti
on) OVERRIDE; | 131 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti
on) OVERRIDE; |
132 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportDesc
ription&) const OVERRIDE; | 132 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportDesc
ription&) const OVERRIDE; |
133 virtual void print(WebCore::LocalFrame*) OVERRIDE; | 133 virtual void print(WebCore::LocalFrame*) OVERRIDE; |
134 virtual void annotatedRegionsChanged() OVERRIDE; | 134 virtual void annotatedRegionsChanged() OVERRIDE; |
135 virtual bool paintCustomOverhangArea(WebCore::GraphicsContext*, const WebCor
e::IntRect&, const WebCore::IntRect&, const WebCore::IntRect&) OVERRIDE; | 135 virtual bool paintCustomOverhangArea(WebCore::GraphicsContext*, const WebCor
e::IntRect&, const WebCore::IntRect&, const WebCore::IntRect&) OVERRIDE; |
136 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::LocalF
rame*, WebCore::ColorChooserClient*, const WebCore::Color&) OVERRIDE; | 136 virtual PassOwnPtr<WebCore::ColorChooser> createColorChooser(WebCore::LocalF
rame*, WebCore::ColorChooserClient*, const WebCore::Color&) OVERRIDE; |
137 virtual PassRefPtr<WebCore::DateTimeChooser> openDateTimeChooser(WebCore::Da
teTimeChooserClient*, const WebCore::DateTimeChooserParameters&) OVERRIDE; | 137 virtual PassRefPtrWillBeRawPtr<WebCore::DateTimeChooser> openDateTimeChooser
(WebCore::DateTimeChooserClient*, const WebCore::DateTimeChooserParameters&) OVE
RRIDE; |
138 virtual void openTextDataListChooser(WebCore::HTMLInputElement&) OVERRIDE; | 138 virtual void openTextDataListChooser(WebCore::HTMLInputElement&) OVERRIDE; |
139 virtual void runOpenPanel(WebCore::LocalFrame*, PassRefPtr<WebCore::FileChoo
ser>) OVERRIDE; | 139 virtual void runOpenPanel(WebCore::LocalFrame*, PassRefPtr<WebCore::FileChoo
ser>) OVERRIDE; |
140 virtual void enumerateChosenDirectory(WebCore::FileChooser*) OVERRIDE; | 140 virtual void enumerateChosenDirectory(WebCore::FileChooser*) OVERRIDE; |
141 virtual void setCursor(const WebCore::Cursor&) OVERRIDE; | 141 virtual void setCursor(const WebCore::Cursor&) OVERRIDE; |
142 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE; | 142 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE; |
143 virtual void setTouchAction(WebCore::TouchAction) OVERRIDE; | 143 virtual void setTouchAction(WebCore::TouchAction) OVERRIDE; |
144 | 144 |
145 virtual WebCore::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE
; | 145 virtual WebCore::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE
; |
146 | 146 |
147 // Pass 0 as the GraphicsLayer to detatch the root layer. | 147 // Pass 0 as the GraphicsLayer to detatch the root layer. |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 214 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
215 | 215 |
216 WebViewImpl* m_webView; | 216 WebViewImpl* m_webView; |
217 }; | 217 }; |
218 | 218 |
219 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr
omeClientImpl(), client.isChromeClientImpl()); | 219 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr
omeClientImpl(), client.isChromeClientImpl()); |
220 | 220 |
221 } // namespace blink | 221 } // namespace blink |
222 | 222 |
223 #endif | 223 #endif |
OLD | NEW |