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

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

Issue 104433004: Enable VM service inside Dartium Renderer processes (Closed) Base URL: svn://svn.chromium.org/multivm/branches/1650/blink
Patch Set: Created 7 years 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) 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 27 matching lines...) Expand all
38 #include "wtf/text/WTFString.h" 38 #include "wtf/text/WTFString.h"
39 39
40 namespace WebCore { 40 namespace WebCore {
41 41
42 class DOMWrapperWorld; 42 class DOMWrapperWorld;
43 class Frame; 43 class Frame;
44 class GraphicsContext; 44 class GraphicsContext;
45 class InjectedScriptManager; 45 class InjectedScriptManager;
46 class InspectorBackendDispatcher; 46 class InspectorBackendDispatcher;
47 class InspectorClient; 47 class InspectorClient;
48 class InspectorDartAgent;
48 class InspectorFrontend; 49 class InspectorFrontend;
49 class InspectorFrontendChannel; 50 class InspectorFrontendChannel;
50 class InspectorFrontendClient; 51 class InspectorFrontendClient;
51 class InspectorMemoryAgent; 52 class InspectorMemoryAgent;
52 class InspectorTimelineAgent; 53 class InspectorTimelineAgent;
53 class InspectorOverlay; 54 class InspectorOverlay;
54 class InspectorState; 55 class InspectorState;
55 class InstrumentingAgents; 56 class InstrumentingAgents;
56 class IntSize; 57 class IntSize;
57 class Page; 58 class Page;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 InspectorController(Page*, InspectorClient*); 121 InspectorController(Page*, InspectorClient*);
121 122
122 friend class PostWorkerNotificationToFrontendTask; 123 friend class PostWorkerNotificationToFrontendTask;
123 friend InstrumentingAgents* instrumentationForPage(Page*); 124 friend InstrumentingAgents* instrumentationForPage(Page*);
124 125
125 RefPtr<InstrumentingAgents> m_instrumentingAgents; 126 RefPtr<InstrumentingAgents> m_instrumentingAgents;
126 OwnPtr<InjectedScriptManager> m_injectedScriptManager; 127 OwnPtr<InjectedScriptManager> m_injectedScriptManager;
127 OwnPtr<InspectorCompositeState> m_state; 128 OwnPtr<InspectorCompositeState> m_state;
128 OwnPtr<InspectorOverlay> m_overlay; 129 OwnPtr<InspectorOverlay> m_overlay;
129 130
131 InspectorDartAgent* m_dartAgent;
130 InspectorMemoryAgent* m_memoryAgent; 132 InspectorMemoryAgent* m_memoryAgent;
131 InspectorTimelineAgent* m_timelineAgent; 133 InspectorTimelineAgent* m_timelineAgent;
132 134
133 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; 135 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
134 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; 136 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient;
135 OwnPtr<InspectorFrontend> m_inspectorFrontend; 137 OwnPtr<InspectorFrontend> m_inspectorFrontend;
136 Page* m_page; 138 Page* m_page;
137 InspectorClient* m_inspectorClient; 139 InspectorClient* m_inspectorClient;
138 InspectorAgentRegistry m_agents; 140 InspectorAgentRegistry m_agents;
139 bool m_isUnderTest; 141 bool m_isUnderTest;
140 }; 142 };
141 143
142 } 144 }
143 145
144 146
145 #endif // !defined(InspectorController_h) 147 #endif // !defined(InspectorController_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698