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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 142 |
143 virtual blink::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE; | 143 virtual blink::GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE; |
144 | 144 |
145 // Pass 0 as the GraphicsLayer to detatch the root layer. | 145 // Pass 0 as the GraphicsLayer to detatch the root layer. |
146 virtual void attachRootGraphicsLayer(blink::GraphicsLayer*) OVERRIDE; | 146 virtual void attachRootGraphicsLayer(blink::GraphicsLayer*) OVERRIDE; |
147 | 147 |
148 virtual void enterFullScreenForElement(blink::Element*) OVERRIDE; | 148 virtual void enterFullScreenForElement(blink::Element*) OVERRIDE; |
149 virtual void exitFullScreenForElement(blink::Element*) OVERRIDE; | 149 virtual void exitFullScreenForElement(blink::Element*) OVERRIDE; |
150 | 150 |
151 virtual void clearCompositedSelectionBounds() OVERRIDE; | 151 virtual void clearCompositedSelectionBounds() OVERRIDE; |
| 152 virtual void updateCompositedSelectionBounds(const WebCore::CompositedSelect
ionBound& anchor, const WebCore::CompositedSelectionBound& focus) OVERRIDE; |
152 | 153 |
153 // ChromeClient methods: | 154 // ChromeClient methods: |
154 virtual void postAccessibilityNotification(blink::AXObject*, blink::AXObject
Cache::AXNotification) OVERRIDE; | 155 virtual void postAccessibilityNotification(blink::AXObject*, blink::AXObject
Cache::AXNotification) OVERRIDE; |
155 virtual String acceptLanguages() OVERRIDE; | 156 virtual String acceptLanguages() OVERRIDE; |
156 | 157 |
157 // ChromeClientImpl: | 158 // ChromeClientImpl: |
158 void setCursorForPlugin(const WebCursorInfo&); | 159 void setCursorForPlugin(const WebCursorInfo&); |
159 void setNewWindowNavigationPolicy(WebNavigationPolicy); | 160 void setNewWindowNavigationPolicy(WebNavigationPolicy); |
160 | 161 |
161 virtual bool hasOpenedPopup() const OVERRIDE; | 162 virtual bool hasOpenedPopup() const OVERRIDE; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 bool m_resizable; | 199 bool m_resizable; |
199 | 200 |
200 blink::PagePopupDriver* m_pagePopupDriver; | 201 blink::PagePopupDriver* m_pagePopupDriver; |
201 }; | 202 }; |
202 | 203 |
203 DEFINE_TYPE_CASTS(ChromeClientImpl, blink::ChromeClient, client, client->isChrom
eClientImpl(), client.isChromeClientImpl()); | 204 DEFINE_TYPE_CASTS(ChromeClientImpl, blink::ChromeClient, client, client->isChrom
eClientImpl(), client.isChromeClientImpl()); |
204 | 205 |
205 } // namespace blink | 206 } // namespace blink |
206 | 207 |
207 #endif | 208 #endif |
OLD | NEW |