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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "public/platform/BlameContext.h" | 44 #include "public/platform/BlameContext.h" |
45 #include "public/platform/WebDragOperation.h" | 45 #include "public/platform/WebDragOperation.h" |
46 #include "public/platform/WebEventListenerProperties.h" | 46 #include "public/platform/WebEventListenerProperties.h" |
47 #include "public/platform/WebFocusType.h" | 47 #include "public/platform/WebFocusType.h" |
48 | 48 |
49 // To avoid conflicts with the CreateWindow macro from the Windows SDK... | 49 // To avoid conflicts with the CreateWindow macro from the Windows SDK... |
50 #undef CreateWindow | 50 #undef CreateWindow |
51 | 51 |
52 namespace blink { | 52 namespace blink { |
53 | 53 |
54 class AXObjectImpl; | 54 class AXObject; |
55 class ColorChooser; | 55 class ColorChooser; |
56 class ColorChooserClient; | 56 class ColorChooserClient; |
57 class CompositorWorkerProxyClient; | 57 class CompositorWorkerProxyClient; |
58 class CompositorAnimationTimeline; | 58 class CompositorAnimationTimeline; |
59 class DateTimeChooser; | 59 class DateTimeChooser; |
60 class DateTimeChooserClient; | 60 class DateTimeChooserClient; |
61 class Element; | 61 class Element; |
62 class FileChooser; | 62 class FileChooser; |
63 class FloatPoint; | 63 class FloatPoint; |
64 class Frame; | 64 class Frame; |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 | 280 |
281 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; | 281 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; |
282 | 282 |
283 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). | 283 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). |
284 virtual bool HasOpenedPopup() const = 0; | 284 virtual bool HasOpenedPopup() const = 0; |
285 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; | 285 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; |
286 virtual PagePopup* OpenPagePopup(PagePopupClient*) = 0; | 286 virtual PagePopup* OpenPagePopup(PagePopupClient*) = 0; |
287 virtual void ClosePagePopup(PagePopup*) = 0; | 287 virtual void ClosePagePopup(PagePopup*) = 0; |
288 virtual DOMWindow* PagePopupWindowForTesting() const = 0; | 288 virtual DOMWindow* PagePopupWindowForTesting() const = 0; |
289 | 289 |
290 virtual void PostAccessibilityNotification(AXObjectImpl*, | 290 virtual void PostAccessibilityNotification(AXObject*, |
291 AXObjectCache::AXNotification) {} | 291 AXObjectCache::AXNotification) {} |
292 virtual String AcceptLanguages() = 0; | 292 virtual String AcceptLanguages() = 0; |
293 | 293 |
294 enum DialogType { | 294 enum DialogType { |
295 kAlertDialog = 0, | 295 kAlertDialog = 0, |
296 kConfirmDialog = 1, | 296 kConfirmDialog = 1, |
297 kPromptDialog = 2, | 297 kPromptDialog = 2, |
298 kHTMLDialog = 3 | 298 kHTMLDialog = 3 |
299 }; | 299 }; |
300 virtual bool ShouldOpenModalDialogDuringPageDismissal( | 300 virtual bool ShouldOpenModalDialogDuringPageDismissal( |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 WeakMember<Node> last_mouse_over_node_; | 394 WeakMember<Node> last_mouse_over_node_; |
395 LayoutPoint last_tool_tip_point_; | 395 LayoutPoint last_tool_tip_point_; |
396 String last_tool_tip_text_; | 396 String last_tool_tip_text_; |
397 | 397 |
398 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 398 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
399 }; | 399 }; |
400 | 400 |
401 } // namespace blink | 401 } // namespace blink |
402 | 402 |
403 #endif // ChromeClient_h | 403 #endif // ChromeClient_h |
OLD | NEW |