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

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

Issue 650183003: Clean up forward declarations in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/core/inspector/InspectorClient.h ('k') | Source/core/inspector/InspectorController.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 25 matching lines...) Expand all
36 #include "wtf/HashMap.h" 36 #include "wtf/HashMap.h"
37 #include "wtf/Noncopyable.h" 37 #include "wtf/Noncopyable.h"
38 #include "wtf/Vector.h" 38 #include "wtf/Vector.h"
39 #include "wtf/text/StringHash.h" 39 #include "wtf/text/StringHash.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class ConsoleMessage; 43 class ConsoleMessage;
44 class ConsoleMessageStorage; 44 class ConsoleMessageStorage;
45 class DocumentLoader; 45 class DocumentLoader;
46 class LocalDOMWindow;
47 class LocalFrame; 46 class LocalFrame;
48 class InspectorConsoleMessage;
49 class InspectorFrontend; 47 class InspectorFrontend;
50 class InjectedScriptManager; 48 class InjectedScriptManager;
51 class InspectorTimelineAgent; 49 class InspectorTimelineAgent;
52 class InstrumentingAgents;
53 class ResourceError;
54 class ResourceLoader;
55 class ResourceResponse;
56 class ScriptArguments;
57 class ScriptCallStack;
58 class ScriptProfile; 50 class ScriptProfile;
59 class ThreadableLoaderClient; 51 class ThreadableLoaderClient;
60 class WorkerGlobalScopeProxy;
61 class XMLHttpRequest; 52 class XMLHttpRequest;
62 53
63 typedef String ErrorString; 54 typedef String ErrorString;
64 55
65 class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>, public InspectorBackendDispatcher::ConsoleCommandHandler { 56 class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>, public InspectorBackendDispatcher::ConsoleCommandHandler {
66 WTF_MAKE_NONCOPYABLE(InspectorConsoleAgent); 57 WTF_MAKE_NONCOPYABLE(InspectorConsoleAgent);
67 public: 58 public:
68 InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*); 59 InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*);
69 virtual ~InspectorConsoleAgent(); 60 virtual ~InspectorConsoleAgent();
70 virtual void trace(Visitor*) override; 61 virtual void trace(Visitor*) override;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 InspectorFrontend::Console* m_frontend; 96 InspectorFrontend::Console* m_frontend;
106 bool m_enabled; 97 bool m_enabled;
107 private: 98 private:
108 static int s_enabledAgentCount; 99 static int s_enabledAgentCount;
109 }; 100 };
110 101
111 } // namespace blink 102 } // namespace blink
112 103
113 104
114 #endif // !defined(InspectorConsoleAgent_h) 105 #endif // !defined(InspectorConsoleAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorClient.h ('k') | Source/core/inspector/InspectorController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698