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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 | 138 |
139 virtual GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE; | 139 virtual GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE; |
140 | 140 |
141 // Pass 0 as the GraphicsLayer to detatch the root layer. | 141 // Pass 0 as the GraphicsLayer to detatch the root layer. |
142 virtual void attachRootGraphicsLayer(GraphicsLayer*) OVERRIDE; | 142 virtual void attachRootGraphicsLayer(GraphicsLayer*) OVERRIDE; |
143 | 143 |
144 virtual void enterFullScreenForElement(Element*) OVERRIDE; | 144 virtual void enterFullScreenForElement(Element*) OVERRIDE; |
145 virtual void exitFullScreenForElement(Element*) OVERRIDE; | 145 virtual void exitFullScreenForElement(Element*) OVERRIDE; |
146 | 146 |
147 virtual void clearCompositedSelectionBounds() OVERRIDE; | 147 virtual void clearCompositedSelectionBounds() OVERRIDE; |
| 148 virtual void updateCompositedSelectionBounds(const blink::CompositedSelectio
nBound& anchor, const blink::CompositedSelectionBound& focus) OVERRIDE; |
148 | 149 |
149 // ChromeClient methods: | 150 // ChromeClient methods: |
150 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotif
ication) OVERRIDE; | 151 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotif
ication) OVERRIDE; |
151 virtual String acceptLanguages() OVERRIDE; | 152 virtual String acceptLanguages() OVERRIDE; |
152 | 153 |
153 // ChromeClientImpl: | 154 // ChromeClientImpl: |
154 void setCursorForPlugin(const WebCursorInfo&); | 155 void setCursorForPlugin(const WebCursorInfo&); |
155 void setNewWindowNavigationPolicy(WebNavigationPolicy); | 156 void setNewWindowNavigationPolicy(WebNavigationPolicy); |
156 | 157 |
157 virtual bool hasOpenedPopup() const OVERRIDE; | 158 virtual bool hasOpenedPopup() const OVERRIDE; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 bool m_resizable; | 195 bool m_resizable; |
195 | 196 |
196 PagePopupDriver* m_pagePopupDriver; | 197 PagePopupDriver* m_pagePopupDriver; |
197 }; | 198 }; |
198 | 199 |
199 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 200 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
200 | 201 |
201 } // namespace blink | 202 } // namespace blink |
202 | 203 |
203 #endif | 204 #endif |
OLD | NEW |