| 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/frame/ConsoleTypes.h" | |
| 29 #include "core/inspector/ConsoleAPITypes.h" | |
| 30 #include "core/loader/FrameLoader.h" | 28 #include "core/loader/FrameLoader.h" |
| 31 #include "core/loader/NavigationPolicy.h" | 29 #include "core/loader/NavigationPolicy.h" |
| 32 #include "core/style/ComputedStyleConstants.h" | 30 #include "core/style/ComputedStyleConstants.h" |
| 33 #include "platform/Cursor.h" | 31 #include "platform/Cursor.h" |
| 34 #include "platform/HostWindow.h" | 32 #include "platform/HostWindow.h" |
| 35 #include "platform/PopupMenu.h" | 33 #include "platform/PopupMenu.h" |
| 36 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 37 #include "platform/scroll/ScrollTypes.h" | 35 #include "platform/scroll/ScrollTypes.h" |
| 36 #include "platform/v8_inspector/public/ConsoleTypes.h" |
| 38 #include "public/platform/BlameContext.h" | 37 #include "public/platform/BlameContext.h" |
| 39 #include "public/platform/WebEventListenerProperties.h" | 38 #include "public/platform/WebEventListenerProperties.h" |
| 40 #include "public/platform/WebFocusType.h" | 39 #include "public/platform/WebFocusType.h" |
| 41 #include "wtf/Forward.h" | 40 #include "wtf/Forward.h" |
| 42 #include "wtf/PassOwnPtr.h" | 41 #include "wtf/PassOwnPtr.h" |
| 43 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| 47 class AXObject; | 46 class AXObject; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 277 |
| 279 LayoutPoint m_lastToolTipPoint; | 278 LayoutPoint m_lastToolTipPoint; |
| 280 String m_lastToolTipText; | 279 String m_lastToolTipText; |
| 281 | 280 |
| 282 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 281 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 283 }; | 282 }; |
| 284 | 283 |
| 285 } // namespace blink | 284 } // namespace blink |
| 286 | 285 |
| 287 #endif // ChromeClient_h | 286 #endif // ChromeClient_h |
| OLD | NEW |