| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 const WebString& savedState) override; | 91 const WebString& savedState) override; |
| 92 void detach() override; | 92 void detach() override; |
| 93 void continueProgram() override; | 93 void continueProgram() override; |
| 94 void dispatchOnInspectorBackend(int sessionId, | 94 void dispatchOnInspectorBackend(int sessionId, |
| 95 int callId, | 95 int callId, |
| 96 const WebString& method, | 96 const WebString& method, |
| 97 const WebString& message) override; | 97 const WebString& message) override; |
| 98 void inspectElementAt(int sessionId, const WebPoint&) override; | 98 void inspectElementAt(int sessionId, const WebPoint&) override; |
| 99 void failedToRequestDevTools() override; | 99 void failedToRequestDevTools() override; |
| 100 WebString evaluateInWebInspectorOverlay(const WebString& script) override; | 100 WebString evaluateInWebInspectorOverlay(const WebString& script) override; |
| 101 bool cacheDisabled() override; |
| 101 | 102 |
| 102 private: | 103 private: |
| 103 WebDevToolsAgentImpl(WebLocalFrameImpl*, | 104 WebDevToolsAgentImpl(WebLocalFrameImpl*, |
| 104 WebDevToolsAgentClient*, | 105 WebDevToolsAgentClient*, |
| 105 InspectorOverlay*, | 106 InspectorOverlay*, |
| 106 bool includeViewAgents); | 107 bool includeViewAgents); |
| 107 | 108 |
| 108 // InspectorTracingAgent::Client implementation. | 109 // InspectorTracingAgent::Client implementation. |
| 109 void enableTracing(const WTF::String& categoryFilter) override; | 110 void enableTracing(const WTF::String& categoryFilter) override; |
| 110 void disableTracing() override; | 111 void disableTracing() override; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 Member<InspectorTracingAgent> m_tracingAgent; | 159 Member<InspectorTracingAgent> m_tracingAgent; |
| 159 | 160 |
| 160 Member<InspectorSession> m_session; | 161 Member<InspectorSession> m_session; |
| 161 bool m_includeViewAgents; | 162 bool m_includeViewAgents; |
| 162 int m_layerTreeId; | 163 int m_layerTreeId; |
| 163 }; | 164 }; |
| 164 | 165 |
| 165 } // namespace blink | 166 } // namespace blink |
| 166 | 167 |
| 167 #endif | 168 #endif |
| OLD | NEW |