OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |