| 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 17 matching lines...) Expand all Loading... |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/dom/AXObjectCache.h" | 29 #include "core/dom/AXObjectCache.h" |
| 30 #include "core/dom/AnimationWorkletProxyClient.h" | 30 #include "core/dom/AnimationWorkletProxyClient.h" |
| 31 #include "core/inspector/ConsoleTypes.h" | 31 #include "core/inspector/ConsoleTypes.h" |
| 32 #include "core/loader/FrameLoader.h" | 32 #include "core/loader/FrameLoader.h" |
| 33 #include "core/loader/NavigationPolicy.h" | 33 #include "core/loader/NavigationPolicy.h" |
| 34 #include "core/style/ComputedStyleConstants.h" | 34 #include "core/style/ComputedStyleConstants.h" |
| 35 #include "platform/Cursor.h" | 35 #include "platform/Cursor.h" |
| 36 #include "platform/PlatformChromeClient.h" | 36 #include "platform/PlatformChromeClient.h" |
| 37 #include "platform/PopupMenu.h" | 37 #include "platform/PopupMenu.h" |
| 38 #include "platform/graphics/TouchAction.h" |
| 38 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
| 39 #include "platform/scroll/ScrollTypes.h" | 40 #include "platform/scroll/ScrollTypes.h" |
| 40 #include "platform/wtf/Forward.h" | 41 #include "platform/wtf/Forward.h" |
| 41 #include "platform/wtf/Optional.h" | 42 #include "platform/wtf/Optional.h" |
| 42 #include "platform/wtf/Vector.h" | 43 #include "platform/wtf/Vector.h" |
| 43 #include "public/platform/BlameContext.h" | 44 #include "public/platform/BlameContext.h" |
| 44 #include "public/platform/WebDragOperation.h" | 45 #include "public/platform/WebDragOperation.h" |
| 45 #include "public/platform/WebEventListenerProperties.h" | 46 #include "public/platform/WebEventListenerProperties.h" |
| 46 #include "public/platform/WebFocusType.h" | 47 #include "public/platform/WebFocusType.h" |
| 47 | 48 |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 WeakMember<Node> last_mouse_over_node_; | 384 WeakMember<Node> last_mouse_over_node_; |
| 384 LayoutPoint last_tool_tip_point_; | 385 LayoutPoint last_tool_tip_point_; |
| 385 String last_tool_tip_text_; | 386 String last_tool_tip_text_; |
| 386 | 387 |
| 387 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 388 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 388 }; | 389 }; |
| 389 | 390 |
| 390 } // namespace blink | 391 } // namespace blink |
| 391 | 392 |
| 392 #endif // ChromeClient_h | 393 #endif // ChromeClient_h |
| OLD | NEW |