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

Side by Side Diff: Source/core/inspector/InspectorClient.h

Issue 18444005: core/inspector: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixes Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 10 matching lines...) Expand all
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef InspectorClient_h 27 #ifndef InspectorClient_h
28 #define InspectorClient_h 28 #define InspectorClient_h
29 29
30 #include "core/inspector/InspectorStateClient.h" 30 #include "core/inspector/InspectorStateClient.h"
31 #include <wtf/Forward.h> 31 #include "wtf/Forward.h"
32 #include <wtf/HashMap.h> 32 #include "wtf/HashMap.h"
33 #include <wtf/HashSet.h> 33 #include "wtf/HashSet.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 class InspectorController; 37 class InspectorController;
38 class InspectorFrontendChannel; 38 class InspectorFrontendChannel;
39 class Frame; 39 class Frame;
40 class Page; 40 class Page;
41 class PlatformKeyboardEvent; 41 class PlatformKeyboardEvent;
42 42
43 class InspectorClient : public InspectorStateClient { 43 class InspectorClient : public InspectorStateClient {
(...skipping 26 matching lines...) Expand all
70 70
71 static bool doDispatchMessageOnFrontendPage(Page* frontendPage, const String & message); 71 static bool doDispatchMessageOnFrontendPage(Page* frontendPage, const String & message);
72 72
73 protected: 73 protected:
74 virtual ~InspectorClient() { } 74 virtual ~InspectorClient() { }
75 }; 75 };
76 76
77 } // namespace WebCore 77 } // namespace WebCore
78 78
79 #endif // !defined(InspectorClient_h) 79 #endif // !defined(InspectorClient_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorBaseAgent.h ('k') | Source/core/inspector/InspectorConsoleAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698