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