| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 class GraphicsLayer; | 65 class GraphicsLayer; |
| 66 class HTMLFormControlElement; | 66 class HTMLFormControlElement; |
| 67 class HTMLInputElement; | 67 class HTMLInputElement; |
| 68 class HTMLSelectElement; | 68 class HTMLSelectElement; |
| 69 class HitTestResult; | 69 class HitTestResult; |
| 70 class IntRect; | 70 class IntRect; |
| 71 class KeyboardEvent; | 71 class KeyboardEvent; |
| 72 class LocalFrame; | 72 class LocalFrame; |
| 73 class Node; | 73 class Node; |
| 74 class Page; | 74 class Page; |
| 75 class PagePopup; |
| 76 class PagePopupClient; |
| 75 class PopupOpeningObserver; | 77 class PopupOpeningObserver; |
| 76 class RemoteFrame; | 78 class RemoteFrame; |
| 77 class WebDragData; | 79 class WebDragData; |
| 78 class WebFrameScheduler; | 80 class WebFrameScheduler; |
| 79 class WebImage; | 81 class WebImage; |
| 80 class WebLayer; | 82 class WebLayer; |
| 81 class WebLayerTreeView; | 83 class WebLayerTreeView; |
| 82 class WebLocalFrameBase; | 84 class WebLocalFrameBase; |
| 83 class WebRemoteFrameBase; | 85 class WebRemoteFrameBase; |
| 84 | 86 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 LocalFrame*, | 276 LocalFrame*, |
| 275 WebEventListenerClass) const = 0; | 277 WebEventListenerClass) const = 0; |
| 276 virtual void UpdateEventRectsForSubframeIfNecessary(LocalFrame*) = 0; | 278 virtual void UpdateEventRectsForSubframeIfNecessary(LocalFrame*) = 0; |
| 277 virtual void SetHasScrollEventHandlers(LocalFrame*, bool) = 0; | 279 virtual void SetHasScrollEventHandlers(LocalFrame*, bool) = 0; |
| 278 | 280 |
| 279 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; | 281 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; |
| 280 | 282 |
| 281 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). | 283 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). |
| 282 virtual bool HasOpenedPopup() const = 0; | 284 virtual bool HasOpenedPopup() const = 0; |
| 283 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; | 285 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; |
| 286 virtual PagePopup* OpenPagePopup(PagePopupClient*) = 0; |
| 287 virtual void ClosePagePopup(PagePopup*) = 0; |
| 284 virtual DOMWindow* PagePopupWindowForTesting() const = 0; | 288 virtual DOMWindow* PagePopupWindowForTesting() const = 0; |
| 285 | 289 |
| 286 virtual void PostAccessibilityNotification(AXObject*, | 290 virtual void PostAccessibilityNotification(AXObject*, |
| 287 AXObjectCache::AXNotification) {} | 291 AXObjectCache::AXNotification) {} |
| 288 virtual String AcceptLanguages() = 0; | 292 virtual String AcceptLanguages() = 0; |
| 289 | 293 |
| 290 enum DialogType { | 294 enum DialogType { |
| 291 kAlertDialog = 0, | 295 kAlertDialog = 0, |
| 292 kConfirmDialog = 1, | 296 kConfirmDialog = 1, |
| 293 kPromptDialog = 2, | 297 kPromptDialog = 2, |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 WeakMember<Node> last_mouse_over_node_; | 394 WeakMember<Node> last_mouse_over_node_; |
| 391 LayoutPoint last_tool_tip_point_; | 395 LayoutPoint last_tool_tip_point_; |
| 392 String last_tool_tip_text_; | 396 String last_tool_tip_text_; |
| 393 | 397 |
| 394 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 398 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 395 }; | 399 }; |
| 396 | 400 |
| 397 } // namespace blink | 401 } // namespace blink |
| 398 | 402 |
| 399 #endif // ChromeClient_h | 403 #endif // ChromeClient_h |
| OLD | NEW |