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

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

Issue 1819243002: [DevTools] Use InspectorFrontendHost.readyForTest for layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ready-for-test
Patch Set: resource-tree-reload.html fix Created 4 years, 9 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 void layerTreeViewChanged(WebLayerTreeView*); 103 void layerTreeViewChanged(WebLayerTreeView*);
104 104
105 // WebDevToolsAgent implementation. 105 // WebDevToolsAgent implementation.
106 void attach(const WebString& hostId, int sessionId) override; 106 void attach(const WebString& hostId, int sessionId) override;
107 void reattach(const WebString& hostId, int sessionId, const WebString& saved State) override; 107 void reattach(const WebString& hostId, int sessionId, const WebString& saved State) override;
108 void detach() override; 108 void detach() override;
109 void continueProgram() override; 109 void continueProgram() override;
110 void dispatchOnInspectorBackend(int sessionId, const WebString& message) ove rride; 110 void dispatchOnInspectorBackend(int sessionId, const WebString& message) ove rride;
111 void inspectElementAt(const WebPoint&) override; 111 void inspectElementAt(const WebPoint&) override;
112 void failedToRequestDevTools() override; 112 void failedToRequestDevTools() override;
113 void evaluateInWebInspector(long callId, const WebString& script) override;
114 WebString evaluateInWebInspectorOverlay(const WebString& script) override; 113 WebString evaluateInWebInspectorOverlay(const WebString& script) override;
115 114
116 private: 115 private:
117 WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtr WillBeRawPtr<InspectorOverlay>); 116 WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtr WillBeRawPtr<InspectorOverlay>);
118 117
119 // InspectorTracingAgent::Client implementation. 118 // InspectorTracingAgent::Client implementation.
120 void enableTracing(const WTF::String& categoryFilter) override; 119 void enableTracing(const WTF::String& categoryFilter) override;
121 void disableTracing() override; 120 void disableTracing() override;
122 121
123 // InspectorEmulationAgent::Client implementation. 122 // InspectorEmulationAgent::Client implementation.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue; 173 typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue;
175 NotificationQueue m_notificationQueue; 174 NotificationQueue m_notificationQueue;
176 int m_sessionId; 175 int m_sessionId;
177 String m_stateCookie; 176 String m_stateCookie;
178 bool m_stateMuted; 177 bool m_stateMuted;
179 }; 178 };
180 179
181 } // namespace blink 180 } // namespace blink
182 181
183 #endif 182 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/protocol.json ('k') | third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698