| 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" |
| 39 #include "public/platform/BlameContext.h" | 40 #include "public/platform/BlameContext.h" |
| 40 #include "public/platform/WebDragOperation.h" | 41 #include "public/platform/WebDragOperation.h" |
| 41 #include "public/platform/WebEventListenerProperties.h" | 42 #include "public/platform/WebEventListenerProperties.h" |
| 42 #include "public/platform/WebFocusType.h" | 43 #include "public/platform/WebFocusType.h" |
| 43 #include "wtf/Forward.h" | 44 #include "wtf/Forward.h" |
| 44 #include "wtf/Optional.h" | 45 #include "wtf/Optional.h" |
| 45 #include "wtf/Vector.h" | 46 #include "wtf/Vector.h" |
| 46 #include <memory> | |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class AXObject; | 50 class AXObject; |
| 51 class ColorChooser; | 51 class ColorChooser; |
| 52 class ColorChooserClient; | 52 class ColorChooserClient; |
| 53 class CompositorWorkerProxyClient; | 53 class CompositorWorkerProxyClient; |
| 54 class CompositorAnimationTimeline; | 54 class CompositorAnimationTimeline; |
| 55 class DateTimeChooser; | 55 class DateTimeChooser; |
| 56 class DateTimeChooserClient; | 56 class DateTimeChooserClient; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 WeakMember<Node> m_lastMouseOverNode; | 375 WeakMember<Node> m_lastMouseOverNode; |
| 376 LayoutPoint m_lastToolTipPoint; | 376 LayoutPoint m_lastToolTipPoint; |
| 377 String m_lastToolTipText; | 377 String m_lastToolTipText; |
| 378 | 378 |
| 379 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 379 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 380 }; | 380 }; |
| 381 | 381 |
| 382 } // namespace blink | 382 } // namespace blink |
| 383 | 383 |
| 384 #endif // ChromeClient_h | 384 #endif // ChromeClient_h |
| OLD | NEW |