Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/WebDragOperation.h" 38 #include "public/platform/WebDragOperation.h"
40 #include "public/platform/WebEventListenerProperties.h" 39 #include "public/platform/WebEventListenerProperties.h"
41 #include "public/platform/WebFocusType.h" 40 #include "public/platform/WebFocusType.h"
42 #include "wtf/Forward.h" 41 #include "wtf/Forward.h"
43 #include "wtf/PassOwnPtr.h" 42 #include "wtf/PassOwnPtr.h"
44 #include "wtf/Vector.h" 43 #include "wtf/Vector.h"
45 44
46 namespace blink { 45 namespace blink {
47 46
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 293
295 LayoutPoint m_lastToolTipPoint; 294 LayoutPoint m_lastToolTipPoint;
296 String m_lastToolTipText; 295 String m_lastToolTipText;
297 296
298 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 297 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
299 }; 298 };
300 299
301 } // namespace blink 300 } // namespace blink
302 301
303 #endif // ChromeClient_h 302 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698