| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef ChromeClient_h | 22 #ifndef ChromeClient_h |
| 23 #define ChromeClient_h | 23 #define ChromeClient_h |
| 24 | 24 |
| 25 #include "base/gtest_prod_util.h" | 25 #include "base/gtest_prod_util.h" |
| 26 #include "core/CoreExport.h" | 26 #include "core/CoreExport.h" |
| 27 #include "core/dom/AXObjectCache.h" | 27 #include "core/dom/AXObjectCache.h" |
| 28 #include "core/inspector/ConsoleTypes.h" |
| 28 #include "core/loader/FrameLoader.h" | 29 #include "core/loader/FrameLoader.h" |
| 29 #include "core/loader/NavigationPolicy.h" | 30 #include "core/loader/NavigationPolicy.h" |
| 30 #include "core/style/ComputedStyleConstants.h" | 31 #include "core/style/ComputedStyleConstants.h" |
| 31 #include "platform/Cursor.h" | 32 #include "platform/Cursor.h" |
| 32 #include "platform/HostWindow.h" | 33 #include "platform/HostWindow.h" |
| 33 #include "platform/PopupMenu.h" | 34 #include "platform/PopupMenu.h" |
| 34 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 35 #include "platform/scroll/ScrollTypes.h" | 36 #include "platform/scroll/ScrollTypes.h" |
| 36 #include "platform/v8_inspector/public/ConsoleTypes.h" | |
| 37 #include "public/platform/BlameContext.h" | 37 #include "public/platform/BlameContext.h" |
| 38 #include "public/platform/WebDragOperation.h" | 38 #include "public/platform/WebDragOperation.h" |
| 39 #include "public/platform/WebEventListenerProperties.h" | 39 #include "public/platform/WebEventListenerProperties.h" |
| 40 #include "public/platform/WebFocusType.h" | 40 #include "public/platform/WebFocusType.h" |
| 41 #include "wtf/Forward.h" | 41 #include "wtf/Forward.h" |
| 42 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
| 43 #include <memory> | 43 #include <memory> |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 301 |
| 302 LayoutPoint m_lastToolTipPoint; | 302 LayoutPoint m_lastToolTipPoint; |
| 303 String m_lastToolTipText; | 303 String m_lastToolTipText; |
| 304 | 304 |
| 305 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 305 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 } // namespace blink | 308 } // namespace blink |
| 309 | 309 |
| 310 #endif // ChromeClient_h | 310 #endif // ChromeClient_h |
| OLD | NEW |