| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 156 |
| 157 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override; | 157 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override; |
| 158 | 158 |
| 159 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 159 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
| 160 LocalFrame*) override; | 160 LocalFrame*) override; |
| 161 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 161 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
| 162 LocalFrame*) override; | 162 LocalFrame*) override; |
| 163 | 163 |
| 164 void enterFullscreen(LocalFrame&) override; | 164 void enterFullscreen(LocalFrame&) override; |
| 165 void exitFullscreen(LocalFrame&) override; | 165 void exitFullscreen(LocalFrame&) override; |
| 166 void fullscreenElementChanged(Element* fromElement, | 166 void fullscreenElementChanged(Element*, Element*) override; |
| 167 Element* toElement) override; | |
| 168 | 167 |
| 169 void clearCompositedSelection(LocalFrame*) override; | 168 void clearCompositedSelection(LocalFrame*) override; |
| 170 void updateCompositedSelection(LocalFrame*, | 169 void updateCompositedSelection(LocalFrame*, |
| 171 const CompositedSelection&) override; | 170 const CompositedSelection&) override; |
| 172 | 171 |
| 173 // ChromeClient methods: | 172 // ChromeClient methods: |
| 174 void postAccessibilityNotification(AXObject*, | 173 void postAccessibilityNotification(AXObject*, |
| 175 AXObjectCache::AXNotification) override; | 174 AXObjectCache::AXNotification) override; |
| 176 String acceptLanguages() override; | 175 String acceptLanguages() override; |
| 177 | 176 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 | 247 |
| 249 DEFINE_TYPE_CASTS(ChromeClientImpl, | 248 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 250 ChromeClient, | 249 ChromeClient, |
| 251 client, | 250 client, |
| 252 client->isChromeClientImpl(), | 251 client->isChromeClientImpl(), |
| 253 client.isChromeClientImpl()); | 252 client.isChromeClientImpl()); |
| 254 | 253 |
| 255 } // namespace blink | 254 } // namespace blink |
| 256 | 255 |
| 257 #endif | 256 #endif |
| OLD | NEW |