| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 159 |
| 160 void AttachRootLayer(WebLayer*, LocalFrame* local_root) override; | 160 void AttachRootLayer(WebLayer*, LocalFrame* local_root) override; |
| 161 | 161 |
| 162 void AttachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 162 void AttachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
| 163 LocalFrame*) override; | 163 LocalFrame*) override; |
| 164 void DetachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 164 void DetachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
| 165 LocalFrame*) override; | 165 LocalFrame*) override; |
| 166 | 166 |
| 167 void EnterFullscreen(LocalFrame&) override; | 167 void EnterFullscreen(LocalFrame&) override; |
| 168 void ExitFullscreen(LocalFrame&) override; | 168 void ExitFullscreen(LocalFrame&) override; |
| 169 void FullscreenElementChanged(Element*, Element*) override; | 169 void FullscreenElementChanged(Element* from_element, |
| 170 Element* to_element) override; |
| 170 | 171 |
| 171 void ClearCompositedSelection(LocalFrame*) override; | 172 void ClearCompositedSelection(LocalFrame*) override; |
| 172 void UpdateCompositedSelection(LocalFrame*, | 173 void UpdateCompositedSelection(LocalFrame*, |
| 173 const CompositedSelection&) override; | 174 const CompositedSelection&) override; |
| 174 | 175 |
| 175 // ChromeClient methods: | 176 // ChromeClient methods: |
| 176 void PostAccessibilityNotification(AXObject*, | 177 void PostAccessibilityNotification(AXObject*, |
| 177 AXObjectCache::AXNotification) override; | 178 AXObjectCache::AXNotification) override; |
| 178 String AcceptLanguages() override; | 179 String AcceptLanguages() override; |
| 179 void SetCursorForPlugin(const WebCursorInfo&, LocalFrame*) override; | 180 void SetCursorForPlugin(const WebCursorInfo&, LocalFrame*) override; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 258 |
| 258 DEFINE_TYPE_CASTS(ChromeClientImpl, | 259 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 259 ChromeClient, | 260 ChromeClient, |
| 260 client, | 261 client, |
| 261 client->IsChromeClientImpl(), | 262 client->IsChromeClientImpl(), |
| 262 client.IsChromeClientImpl()); | 263 client.IsChromeClientImpl()); |
| 263 | 264 |
| 264 } // namespace blink | 265 } // namespace blink |
| 265 | 266 |
| 266 #endif | 267 #endif |
| OLD | NEW |