Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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; | 113 void evaluateInWebInspector(long callId, const WebString& script) override; |
| 114 WebString evaluateInWebInspectorOverlay(const WebString& script) override; | 114 WebString evaluateInWebInspectorOverlay(const WebString& script) override; |
| 115 | 115 |
| 116 private: | 116 private: |
| 117 WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtr WillBeRawPtr<InspectorOverlay>); | 117 WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtr WillBeRawPtr<InspectorOverlay>); |
| 118 | 118 |
| 119 // InspectorTracingAgent::Client implementation. | 119 // InspectorTracingAgent::Client implementation. |
| 120 void enableTracingWithConfigStr(const String& devtoolsStyleConfig) override; | |
|
caseq
2016/03/05 02:25:24
Having to do all this plumbing is quite unfortunat
| |
| 120 void enableTracing(const WTF::String& categoryFilter) override; | 121 void enableTracing(const WTF::String& categoryFilter) override; |
| 121 void disableTracing() override; | 122 void disableTracing() override; |
| 122 | 123 |
| 123 // InspectorEmulationAgent::Client implementation. | 124 // InspectorEmulationAgent::Client implementation. |
| 124 void setCPUThrottlingRate(double) override; | 125 void setCPUThrottlingRate(double) override; |
| 125 | 126 |
| 126 // InspectorRuntimeAgent::Client implementation. | 127 // InspectorRuntimeAgent::Client implementation. |
| 127 void resumeStartup() override; | 128 void resumeStartup() override; |
| 128 bool didCommitLoadFired() override; | 129 bool didCommitLoadFired() override; |
| 129 | 130 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 178 int m_sessionId; | 179 int m_sessionId; |
| 179 String m_stateCookie; | 180 String m_stateCookie; |
| 180 bool m_stateMuted; | 181 bool m_stateMuted; |
| 181 | 182 |
| 182 friend class DebuggerTask; | 183 friend class DebuggerTask; |
| 183 }; | 184 }; |
| 184 | 185 |
| 185 } // namespace blink | 186 } // namespace blink |
| 186 | 187 |
| 187 #endif | 188 #endif |
| OLD | NEW |