| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |