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. |
11 * | 11 * |
12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Library General Public License for more details. | 15 * Library General Public License for more details. |
16 * | 16 * |
17 * You should have received a copy of the GNU Library General Public License | 17 * You should have received a copy of the GNU Library General Public License |
18 * along with this library; see the file COPYING.LIB. If not, write to | 18 * along with this library; see the file COPYING.LIB. If not, write to |
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 * Boston, MA 02110-1301, USA. | 20 * Boston, MA 02110-1301, USA. |
21 */ | 21 */ |
22 | 22 |
23 #ifndef ChromeClient_h | 23 #ifndef ChromeClient_h |
24 #define ChromeClient_h | 24 #define ChromeClient_h |
25 | 25 |
| 26 #include <memory> |
26 #include "base/gtest_prod_util.h" | 27 #include "base/gtest_prod_util.h" |
27 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
28 #include "core/dom/AXObjectCache.h" | 29 #include "core/dom/AXObjectCache.h" |
29 #include "core/dom/AnimationWorkletProxyClient.h" | 30 #include "core/dom/AnimationWorkletProxyClient.h" |
30 #include "core/inspector/ConsoleTypes.h" | 31 #include "core/inspector/ConsoleTypes.h" |
31 #include "core/loader/FrameLoader.h" | 32 #include "core/loader/FrameLoader.h" |
32 #include "core/loader/NavigationPolicy.h" | 33 #include "core/loader/NavigationPolicy.h" |
33 #include "core/style/ComputedStyleConstants.h" | 34 #include "core/style/ComputedStyleConstants.h" |
34 #include "platform/Cursor.h" | 35 #include "platform/Cursor.h" |
35 #include "platform/HostWindow.h" | 36 #include "platform/HostWindow.h" |
36 #include "platform/PopupMenu.h" | 37 #include "platform/PopupMenu.h" |
37 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
38 #include "platform/scroll/ScrollTypes.h" | 39 #include "platform/scroll/ScrollTypes.h" |
| 40 #include "platform/wtf/Forward.h" |
| 41 #include "platform/wtf/Optional.h" |
| 42 #include "platform/wtf/Vector.h" |
39 #include "public/platform/BlameContext.h" | 43 #include "public/platform/BlameContext.h" |
40 #include "public/platform/WebDragOperation.h" | 44 #include "public/platform/WebDragOperation.h" |
41 #include "public/platform/WebEventListenerProperties.h" | 45 #include "public/platform/WebEventListenerProperties.h" |
42 #include "public/platform/WebFocusType.h" | 46 #include "public/platform/WebFocusType.h" |
43 #include "wtf/Forward.h" | |
44 #include "wtf/Optional.h" | |
45 #include "wtf/Vector.h" | |
46 #include <memory> | |
47 | 47 |
48 // To avoid conflicts with the CreateWindow macro from the Windows SDK... | 48 // To avoid conflicts with the CreateWindow macro from the Windows SDK... |
49 #undef CreateWindow | 49 #undef CreateWindow |
50 | 50 |
51 namespace blink { | 51 namespace blink { |
52 | 52 |
53 class AXObject; | 53 class AXObject; |
54 class ColorChooser; | 54 class ColorChooser; |
55 class ColorChooserClient; | 55 class ColorChooserClient; |
56 class CompositorWorkerProxyClient; | 56 class CompositorWorkerProxyClient; |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 WeakMember<Node> last_mouse_over_node_; | 378 WeakMember<Node> last_mouse_over_node_; |
379 LayoutPoint last_tool_tip_point_; | 379 LayoutPoint last_tool_tip_point_; |
380 String last_tool_tip_text_; | 380 String last_tool_tip_text_; |
381 | 381 |
382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
383 }; | 383 }; |
384 | 384 |
385 } // namespace blink | 385 } // namespace blink |
386 | 386 |
387 #endif // ChromeClient_h | 387 #endif // ChromeClient_h |
OLD | NEW |