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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 void willBeDestroyed(); | 84 void willBeDestroyed(); |
85 WebDevToolsAgentClient* client() { return m_client; } | 85 WebDevToolsAgentClient* client() { return m_client; } |
86 InspectorOverlay* overlay() const { return m_overlay.get(); } | 86 InspectorOverlay* overlay() const { return m_overlay.get(); } |
87 void flushProtocolNotifications(); | 87 void flushProtocolNotifications(); |
88 static void webViewImplClosed(WebViewImpl*); | 88 static void webViewImplClosed(WebViewImpl*); |
89 static void webFrameWidgetImplClosed(WebFrameWidgetImpl*); | 89 static void webFrameWidgetImplClosed(WebFrameWidgetImpl*); |
90 | 90 |
91 // Instrumentation from web/ layer. | 91 // Instrumentation from web/ layer. |
92 void didCommitLoadForLocalFrame(LocalFrame*); | 92 void didCommitLoadForLocalFrame(LocalFrame*); |
| 93 void didStartProvisionalLoad(LocalFrame*); |
93 bool screencastEnabled(); | 94 bool screencastEnabled(); |
94 void willAddPageOverlay(const GraphicsLayer*); | 95 void willAddPageOverlay(const GraphicsLayer*); |
95 void didRemovePageOverlay(const GraphicsLayer*); | 96 void didRemovePageOverlay(const GraphicsLayer*); |
96 void layerTreeViewChanged(WebLayerTreeView*); | 97 void layerTreeViewChanged(WebLayerTreeView*); |
97 | 98 |
98 // WebDevToolsAgent implementation. | 99 // WebDevToolsAgent implementation. |
99 void attach(const WebString& hostId, int sessionId) override; | 100 void attach(const WebString& hostId, int sessionId) override; |
100 void reattach(const WebString& hostId, int sessionId, const WebString& saved
State) override; | 101 void reattach(const WebString& hostId, int sessionId, const WebString& saved
State) override; |
101 void detach() override; | 102 void detach() override; |
102 void continueProgram() override; | 103 void continueProgram() override; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 Member<InspectorTracingAgent> m_tracingAgent; | 157 Member<InspectorTracingAgent> m_tracingAgent; |
157 | 158 |
158 Member<InspectorSession> m_session; | 159 Member<InspectorSession> m_session; |
159 bool m_includeViewAgents; | 160 bool m_includeViewAgents; |
160 int m_layerTreeId; | 161 int m_layerTreeId; |
161 }; | 162 }; |
162 | 163 |
163 } // namespace blink | 164 } // namespace blink |
164 | 165 |
165 #endif | 166 #endif |
OLD | NEW |