| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 virtual void setTouchAction(TouchAction) override; | 133 virtual void setTouchAction(TouchAction) override; |
| 134 | 134 |
| 135 virtual GraphicsLayerFactory* graphicsLayerFactory() const override; | 135 virtual GraphicsLayerFactory* graphicsLayerFactory() const override; |
| 136 | 136 |
| 137 // Pass 0 as the GraphicsLayer to detatch the root layer. | 137 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| 138 virtual void attachRootGraphicsLayer(GraphicsLayer*) override; | 138 virtual void attachRootGraphicsLayer(GraphicsLayer*) override; |
| 139 | 139 |
| 140 virtual void enterFullScreenForElement(Element*) override; | 140 virtual void enterFullScreenForElement(Element*) override; |
| 141 virtual void exitFullScreenForElement(Element*) override; | 141 virtual void exitFullScreenForElement(Element*) override; |
| 142 | 142 |
| 143 virtual int compositorId() const override; |
| 144 |
| 143 virtual void clearCompositedSelectionBounds() override; | 145 virtual void clearCompositedSelectionBounds() override; |
| 144 virtual void updateCompositedSelectionBounds(const blink::CompositedSelectio
nBound& anchor, const blink::CompositedSelectionBound& focus) override; | 146 virtual void updateCompositedSelectionBounds(const blink::CompositedSelectio
nBound& anchor, const blink::CompositedSelectionBound& focus) override; |
| 145 | 147 |
| 146 // ChromeClient methods: | 148 // ChromeClient methods: |
| 147 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotif
ication) override; | 149 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotif
ication) override; |
| 148 virtual String acceptLanguages() override; | 150 virtual String acceptLanguages() override; |
| 149 | 151 |
| 150 // ChromeClientImpl: | 152 // ChromeClientImpl: |
| 151 void setCursorForPlugin(const WebCursorInfo&); | 153 void setCursorForPlugin(const WebCursorInfo&); |
| 152 void setNewWindowNavigationPolicy(WebNavigationPolicy); | 154 void setNewWindowNavigationPolicy(WebNavigationPolicy); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 bool m_resizable; | 190 bool m_resizable; |
| 189 | 191 |
| 190 PagePopupDriver* m_pagePopupDriver; | 192 PagePopupDriver* m_pagePopupDriver; |
| 191 }; | 193 }; |
| 192 | 194 |
| 193 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 195 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 194 | 196 |
| 195 } // namespace blink | 197 } // namespace blink |
| 196 | 198 |
| 197 #endif | 199 #endif |
| OLD | NEW |