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

Side by Side Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h

Issue 2035653006: [DevTools] Move Console to v8 inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: improved api a bit Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // InspectorPageAgent::Client implementation. 118 // InspectorPageAgent::Client implementation.
119 void pageLayoutInvalidated(bool resized) override; 119 void pageLayoutInvalidated(bool resized) override;
120 void setPausedInDebuggerMessage(const String&) override; 120 void setPausedInDebuggerMessage(const String&) override;
121 void waitForCreateWindow(LocalFrame*) override; 121 void waitForCreateWindow(LocalFrame*) override;
122 122
123 // InspectorSession::Client implementation. 123 // InspectorSession::Client implementation.
124 void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override; 124 void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override;
125 void resumeStartup() override; 125 void resumeStartup() override;
126 void profilingStarted() override; 126 void profilingStarted() override;
127 void profilingStopped() override; 127 void profilingStopped() override;
128 void consoleCleared() override;
128 129
129 // WebThread::TaskObserver implementation. 130 // WebThread::TaskObserver implementation.
130 void willProcessTask() override; 131 void willProcessTask() override;
131 void didProcessTask() override; 132 void didProcessTask() override;
132 133
133 void initializeSession(int sessionId, const String& hostId, String* state); 134 void initializeSession(int sessionId, const String& hostId, String* state);
134 void destroySession(); 135 void destroySession();
135 void dispatchMessageFromFrontend(int sessionId, const String& method, const String& message); 136 void dispatchMessageFromFrontend(int sessionId, const String& method, const String& message);
136 137
137 friend class WebDevToolsAgent; 138 friend class WebDevToolsAgent;
(...skipping 17 matching lines...) Expand all
155 Member<InspectorTracingAgent> m_tracingAgent; 156 Member<InspectorTracingAgent> m_tracingAgent;
156 157
157 Member<InspectorSession> m_session; 158 Member<InspectorSession> m_session;
158 bool m_includeViewAgents; 159 bool m_includeViewAgents;
159 int m_layerTreeId; 160 int m_layerTreeId;
160 }; 161 };
161 162
162 } // namespace blink 163 } // namespace blink
163 164
164 #endif 165 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698