| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 // InspectorPageAgent::Client implementation. | 118 // InspectorPageAgent::Client implementation. |
| 119 void pageLayoutInvalidated(bool resized) override; | 119 void pageLayoutInvalidated(bool resized) override; |
| 120 void setPausedInDebuggerMessage(const String&) override; | 120 void setPausedInDebuggerMessage(const String&) override; |
| 121 void waitForCreateWindow(LocalFrame*) override; | 121 void waitForCreateWindow(LocalFrame*) override; |
| 122 | 122 |
| 123 // InspectorSession::Client implementation. | 123 // InspectorSession::Client implementation. |
| 124 void sendProtocolMessage(int sessionId, int callId, const String& response,
const String& state) override; | 124 void sendProtocolMessage(int sessionId, int callId, const String& response,
const String& state) override; |
| 125 void resumeStartup() override; | 125 void resumeStartup() override; |
| 126 void profilingStarted() override; | 126 void profilingStarted() override; |
| 127 void profilingStopped() override; | 127 void profilingStopped() override; |
| 128 void consoleCleared() override; |
| 128 | 129 |
| 129 // WebThread::TaskObserver implementation. | 130 // WebThread::TaskObserver implementation. |
| 130 void willProcessTask() override; | 131 void willProcessTask() override; |
| 131 void didProcessTask() override; | 132 void didProcessTask() override; |
| 132 | 133 |
| 133 void initializeSession(int sessionId, const String& hostId, String* state); | 134 void initializeSession(int sessionId, const String& hostId, String* state); |
| 134 void destroySession(); | 135 void destroySession(); |
| 135 void dispatchMessageFromFrontend(int sessionId, const String& method, const
String& message); | 136 void dispatchMessageFromFrontend(int sessionId, const String& method, const
String& message); |
| 136 | 137 |
| 137 friend class WebDevToolsAgent; | 138 friend class WebDevToolsAgent; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 155 Member<InspectorTracingAgent> m_tracingAgent; | 156 Member<InspectorTracingAgent> m_tracingAgent; |
| 156 | 157 |
| 157 Member<InspectorSession> m_session; | 158 Member<InspectorSession> m_session; |
| 158 bool m_includeViewAgents; | 159 bool m_includeViewAgents; |
| 159 int m_layerTreeId; | 160 int m_layerTreeId; |
| 160 }; | 161 }; |
| 161 | 162 |
| 162 } // namespace blink | 163 } // namespace blink |
| 163 | 164 |
| 164 #endif | 165 #endif |
| OLD | NEW |