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

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

Issue 1702673002: DevTools: migrate remote debugging protocol generators to jinja2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 void disableTracing() override; 117 void disableTracing() override;
118 118
119 // InspectorEmulationAgent::Client implementation. 119 // InspectorEmulationAgent::Client implementation.
120 void setCPUThrottlingRate(double) override; 120 void setCPUThrottlingRate(double) override;
121 121
122 // InspectorRuntimeAgent::Client implementation. 122 // InspectorRuntimeAgent::Client implementation.
123 void resumeStartup() override; 123 void resumeStartup() override;
124 124
125 // InspectorPageAgent::Client implementation. 125 // InspectorPageAgent::Client implementation.
126 void pageLayoutInvalidated() override; 126 void pageLayoutInvalidated() override;
127 void setPausedInDebuggerMessage(const String*) override; 127 void setPausedInDebuggerMessage(const String&) override;
128 void waitForCreateWindow(LocalFrame*) override; 128 void waitForCreateWindow(LocalFrame*) override;
129 129
130 // protocol::FrontendChannel implementation. 130 // protocol::FrontendChannel implementation.
131 void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject> message) override; 131 void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject> message) override;
132 void sendProtocolNotification(PassRefPtr<JSONObject> message) override; 132 void sendProtocolNotification(PassRefPtr<JSONObject> message) override;
133 void flush() override; 133 void flush() override;
134 134
135 // WebThread::TaskObserver implementation. 135 // WebThread::TaskObserver implementation.
136 void willProcessTask() override; 136 void willProcessTask() override;
137 void didProcessTask() override; 137 void didProcessTask() override;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 int m_sessionId; 169 int m_sessionId;
170 String m_stateCookie; 170 String m_stateCookie;
171 bool m_stateMuted; 171 bool m_stateMuted;
172 172
173 friend class DebuggerTask; 173 friend class DebuggerTask;
174 }; 174 };
175 175
176 } // namespace blink 176 } // namespace blink
177 177
178 #endif 178 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/InspectorOverlay.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698