| 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; |
| 113 WebString evaluateInWebInspectorOverlay(const WebString& script) override; | 114 WebString evaluateInWebInspectorOverlay(const WebString& script) override; |
| 114 | 115 |
| 115 private: | 116 private: |
| 116 WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtr
WillBeRawPtr<InspectorOverlay>); | 117 WebDevToolsAgentImpl(WebLocalFrameImpl*, WebDevToolsAgentClient*, PassOwnPtr
WillBeRawPtr<InspectorOverlay>); |
| 117 | 118 |
| 118 // InspectorTracingAgent::Client implementation. | 119 // InspectorTracingAgent::Client implementation. |
| 119 void enableTracing(const WTF::String& categoryFilter) override; | 120 void enableTracing(const WTF::String& categoryFilter) override; |
| 120 void disableTracing() override; | 121 void disableTracing() override; |
| 121 | 122 |
| 122 // InspectorEmulationAgent::Client implementation. | 123 // InspectorEmulationAgent::Client implementation. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue; | 174 typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue; |
| 174 NotificationQueue m_notificationQueue; | 175 NotificationQueue m_notificationQueue; |
| 175 int m_sessionId; | 176 int m_sessionId; |
| 176 String m_stateCookie; | 177 String m_stateCookie; |
| 177 bool m_stateMuted; | 178 bool m_stateMuted; |
| 178 }; | 179 }; |
| 179 | 180 |
| 180 } // namespace blink | 181 } // namespace blink |
| 181 | 182 |
| 182 #endif | 183 #endif |
| OLD | NEW |