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

Side by Side Diff: Source/core/inspector/InspectorRuntimeAgent.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
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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 33
34 #include "core/InspectorFrontend.h" 34 #include "core/InspectorFrontend.h"
35 #include "core/inspector/InspectorBaseAgent.h" 35 #include "core/inspector/InspectorBaseAgent.h"
36 #include "wtf/Forward.h" 36 #include "wtf/Forward.h"
37 #include "wtf/Noncopyable.h" 37 #include "wtf/Noncopyable.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class InjectedScript; 41 class InjectedScript;
42 class InjectedScriptManager; 42 class InjectedScriptManager;
43 class InstrumentingAgents;
44 class JSONArray; 43 class JSONArray;
45 class ScriptState; 44 class ScriptState;
46 class ScriptDebugServer; 45 class ScriptDebugServer;
47 46
48 typedef String ErrorString; 47 typedef String ErrorString;
49 48
50 class InspectorRuntimeAgent : public InspectorBaseAgent<InspectorRuntimeAgent>, public InspectorBackendDispatcher::RuntimeCommandHandler { 49 class InspectorRuntimeAgent : public InspectorBaseAgent<InspectorRuntimeAgent>, public InspectorBackendDispatcher::RuntimeCommandHandler {
51 WTF_MAKE_NONCOPYABLE(InspectorRuntimeAgent); 50 WTF_MAKE_NONCOPYABLE(InspectorRuntimeAgent);
52 public: 51 public:
53 virtual ~InspectorRuntimeAgent(); 52 virtual ~InspectorRuntimeAgent();
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 ScriptStateToId m_scriptStateToId; 102 ScriptStateToId m_scriptStateToId;
104 103
105 private: 104 private:
106 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 105 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
107 ScriptDebugServer* m_scriptDebugServer; 106 ScriptDebugServer* m_scriptDebugServer;
108 }; 107 };
109 108
110 } // namespace blink 109 } // namespace blink
111 110
112 #endif // InspectorRuntimeAgent_h 111 #endif // InspectorRuntimeAgent_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorResourceAgent.h ('k') | Source/core/inspector/InspectorStyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698