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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 146 |
147 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override; | 147 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override; |
148 | 148 |
149 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override; | 149 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override; |
150 | 150 |
151 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 151 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
152 LocalFrame*) override; | 152 LocalFrame*) override; |
153 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 153 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
154 LocalFrame*) override; | 154 LocalFrame*) override; |
155 | 155 |
156 void enterFullscreen(LocalFrame&) override; | 156 void enterFullscreen(LocalFrame&, |
| 157 std::unique_ptr<FullscreenCallbacks>) override; |
157 void exitFullscreen(LocalFrame&) override; | 158 void exitFullscreen(LocalFrame&) override; |
158 void fullscreenElementChanged(Element*, Element*) override; | 159 void fullscreenElementChanged(Element*, Element*) override; |
159 | 160 |
160 void clearCompositedSelection(LocalFrame*) override; | 161 void clearCompositedSelection(LocalFrame*) override; |
161 void updateCompositedSelection(LocalFrame*, | 162 void updateCompositedSelection(LocalFrame*, |
162 const CompositedSelection&) override; | 163 const CompositedSelection&) override; |
163 | 164 |
164 // ChromeClient methods: | 165 // ChromeClient methods: |
165 void postAccessibilityNotification(AXObject*, | 166 void postAccessibilityNotification(AXObject*, |
166 AXObjectCache::AXNotification) override; | 167 AXObjectCache::AXNotification) override; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 | 240 |
240 DEFINE_TYPE_CASTS(ChromeClientImpl, | 241 DEFINE_TYPE_CASTS(ChromeClientImpl, |
241 ChromeClient, | 242 ChromeClient, |
242 client, | 243 client, |
243 client->isChromeClientImpl(), | 244 client->isChromeClientImpl(), |
244 client.isChromeClientImpl()); | 245 client.isChromeClientImpl()); |
245 | 246 |
246 } // namespace blink | 247 } // namespace blink |
247 | 248 |
248 #endif | 249 #endif |
OLD | NEW |