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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 virtual void UpdateEventRectsForSubframeIfNecessary(LocalFrame*) = 0; | 276 virtual void UpdateEventRectsForSubframeIfNecessary(LocalFrame*) = 0; |
277 virtual void SetHasScrollEventHandlers(LocalFrame*, bool) = 0; | 277 virtual void SetHasScrollEventHandlers(LocalFrame*, bool) = 0; |
278 | 278 |
279 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; | 279 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; |
280 | 280 |
281 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). | 281 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). |
282 virtual bool HasOpenedPopup() const = 0; | 282 virtual bool HasOpenedPopup() const = 0; |
283 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; | 283 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; |
284 virtual DOMWindow* PagePopupWindowForTesting() const = 0; | 284 virtual DOMWindow* PagePopupWindowForTesting() const = 0; |
285 | 285 |
286 virtual void PostAccessibilityNotification(AXObjectImpl*, | 286 virtual void PostAccessibilityNotification(AXObject*, |
287 AXObjectCache::AXNotification) {} | 287 AXObjectCache::AXNotification) {} |
288 virtual String AcceptLanguages() = 0; | 288 virtual String AcceptLanguages() = 0; |
289 | 289 |
290 enum DialogType { | 290 enum DialogType { |
291 kAlertDialog = 0, | 291 kAlertDialog = 0, |
292 kConfirmDialog = 1, | 292 kConfirmDialog = 1, |
293 kPromptDialog = 2, | 293 kPromptDialog = 2, |
294 kHTMLDialog = 3 | 294 kHTMLDialog = 3 |
295 }; | 295 }; |
296 virtual bool ShouldOpenModalDialogDuringPageDismissal( | 296 virtual bool ShouldOpenModalDialogDuringPageDismissal( |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 WeakMember<Node> last_mouse_over_node_; | 390 WeakMember<Node> last_mouse_over_node_; |
391 LayoutPoint last_tool_tip_point_; | 391 LayoutPoint last_tool_tip_point_; |
392 String last_tool_tip_text_; | 392 String last_tool_tip_text_; |
393 | 393 |
394 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 394 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
395 }; | 395 }; |
396 | 396 |
397 } // namespace blink | 397 } // namespace blink |
398 | 398 |
399 #endif // ChromeClient_h | 399 #endif // ChromeClient_h |
OLD | NEW |