| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 | 164 |
| 165 void EnterFullscreen(LocalFrame&) override; | 165 void EnterFullscreen(LocalFrame&) override; |
| 166 void ExitFullscreen(LocalFrame&) override; | 166 void ExitFullscreen(LocalFrame&) override; |
| 167 void FullscreenElementChanged(Element*, Element*) override; | 167 void FullscreenElementChanged(Element*, Element*) override; |
| 168 | 168 |
| 169 void ClearCompositedSelection(LocalFrame*) override; | 169 void ClearCompositedSelection(LocalFrame*) override; |
| 170 void UpdateCompositedSelection(LocalFrame*, | 170 void UpdateCompositedSelection(LocalFrame*, |
| 171 const CompositedSelection&) override; | 171 const CompositedSelection&) override; |
| 172 | 172 |
| 173 // ChromeClient methods: | 173 // ChromeClient methods: |
| 174 void PostAccessibilityNotification(AXObject*, | 174 void PostAccessibilityNotification(AXObjectImpl*, |
| 175 AXObjectCache::AXNotification) override; | 175 AXObjectCache::AXNotification) override; |
| 176 String AcceptLanguages() override; | 176 String AcceptLanguages() override; |
| 177 | 177 |
| 178 // ChromeClientImpl: | 178 // ChromeClientImpl: |
| 179 void SetCursorForPlugin(const WebCursorInfo&, LocalFrame*); | 179 void SetCursorForPlugin(const WebCursorInfo&, LocalFrame*); |
| 180 void SetNewWindowNavigationPolicy(WebNavigationPolicy); | 180 void SetNewWindowNavigationPolicy(WebNavigationPolicy); |
| 181 void SetCursorOverridden(bool); | 181 void SetCursorOverridden(bool); |
| 182 | 182 |
| 183 bool HasOpenedPopup() const override; | 183 bool HasOpenedPopup() const override; |
| 184 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; | 184 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 DEFINE_TYPE_CASTS(ChromeClientImpl, | 253 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 254 ChromeClient, | 254 ChromeClient, |
| 255 client, | 255 client, |
| 256 client->IsChromeClientImpl(), | 256 client->IsChromeClientImpl(), |
| 257 client.IsChromeClientImpl()); | 257 client.IsChromeClientImpl()); |
| 258 | 258 |
| 259 } // namespace blink | 259 } // namespace blink |
| 260 | 260 |
| 261 #endif | 261 #endif |
| OLD | NEW |