| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 AXObjectCache::AXNotification) override; | 177 AXObjectCache::AXNotification) override; |
| 178 String AcceptLanguages() override; | 178 String AcceptLanguages() override; |
| 179 | 179 |
| 180 // ChromeClientImpl: | 180 // ChromeClientImpl: |
| 181 void SetCursorForPlugin(const WebCursorInfo&, LocalFrame*); | 181 void SetCursorForPlugin(const WebCursorInfo&, LocalFrame*); |
| 182 void SetNewWindowNavigationPolicy(WebNavigationPolicy); | 182 void SetNewWindowNavigationPolicy(WebNavigationPolicy); |
| 183 void SetCursorOverridden(bool); | 183 void SetCursorOverridden(bool); |
| 184 | 184 |
| 185 bool HasOpenedPopup() const override; | 185 bool HasOpenedPopup() const override; |
| 186 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; | 186 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; |
| 187 PagePopup* OpenPagePopup(PagePopupClient*); | 187 PagePopup* OpenPagePopup(PagePopupClient*) override; |
| 188 void ClosePagePopup(PagePopup*); | 188 void ClosePagePopup(PagePopup*) override; |
| 189 DOMWindow* PagePopupWindowForTesting() const override; | 189 DOMWindow* PagePopupWindowForTesting() const override; |
| 190 | 190 |
| 191 bool ShouldOpenModalDialogDuringPageDismissal( | 191 bool ShouldOpenModalDialogDuringPageDismissal( |
| 192 LocalFrame&, | 192 LocalFrame&, |
| 193 DialogType, | 193 DialogType, |
| 194 const String& dialog_message, | 194 const String& dialog_message, |
| 195 Document::PageDismissalType) const override; | 195 Document::PageDismissalType) const override; |
| 196 | 196 |
| 197 bool RequestPointerLock(LocalFrame*) override; | 197 bool RequestPointerLock(LocalFrame*) override; |
| 198 void RequestPointerUnlock(LocalFrame*) override; | 198 void RequestPointerUnlock(LocalFrame*) override; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 258 |
| 259 DEFINE_TYPE_CASTS(ChromeClientImpl, | 259 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 260 ChromeClient, | 260 ChromeClient, |
| 261 client, | 261 client, |
| 262 client->IsChromeClientImpl(), | 262 client->IsChromeClientImpl(), |
| 263 client.IsChromeClientImpl()); | 263 client.IsChromeClientImpl()); |
| 264 | 264 |
| 265 } // namespace blink | 265 } // namespace blink |
| 266 | 266 |
| 267 #endif | 267 #endif |
| OLD | NEW |