| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 virtual DOMWindow* PagePopupWindowForTesting() const = 0; | 280 virtual DOMWindow* PagePopupWindowForTesting() const = 0; |
| 281 | 281 |
| 282 virtual void PostAccessibilityNotification(AXObject*, | 282 virtual void PostAccessibilityNotification(AXObject*, |
| 283 AXObjectCache::AXNotification) {} | 283 AXObjectCache::AXNotification) {} |
| 284 virtual String AcceptLanguages() = 0; | 284 virtual String AcceptLanguages() = 0; |
| 285 | 285 |
| 286 enum DialogType { | 286 enum DialogType { |
| 287 kAlertDialog = 0, | 287 kAlertDialog = 0, |
| 288 kConfirmDialog = 1, | 288 kConfirmDialog = 1, |
| 289 kPromptDialog = 2, | 289 kPromptDialog = 2, |
| 290 kHTMLDialog = 3 | 290 kHTMLDialog = 3, |
| 291 kPrintDialog = 4 |
| 291 }; | 292 }; |
| 292 virtual bool ShouldOpenModalDialogDuringPageDismissal( | 293 virtual bool ShouldOpenModalDialogDuringPageDismissal( |
| 293 LocalFrame&, | 294 LocalFrame&, |
| 294 DialogType, | 295 DialogType, |
| 295 const String&, | 296 const String&, |
| 296 Document::PageDismissalType) const { | 297 Document::PageDismissalType) const { |
| 297 return true; | 298 return true; |
| 298 } | 299 } |
| 299 | 300 |
| 300 virtual bool IsSVGImageChromeClient() const { return false; } | 301 virtual bool IsSVGImageChromeClient() const { return false; } |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 WeakMember<Node> last_mouse_over_node_; | 379 WeakMember<Node> last_mouse_over_node_; |
| 379 LayoutPoint last_tool_tip_point_; | 380 LayoutPoint last_tool_tip_point_; |
| 380 String last_tool_tip_text_; | 381 String last_tool_tip_text_; |
| 381 | 382 |
| 382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 383 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 383 }; | 384 }; |
| 384 | 385 |
| 385 } // namespace blink | 386 } // namespace blink |
| 386 | 387 |
| 387 #endif // ChromeClient_h | 388 #endif // ChromeClient_h |
| OLD | NEW |