| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 void disableTracing() override; | 117 void disableTracing() override; |
| 118 | 118 |
| 119 // InspectorEmulationAgent::Client implementation. | 119 // InspectorEmulationAgent::Client implementation. |
| 120 void setCPUThrottlingRate(double) override; | 120 void setCPUThrottlingRate(double) override; |
| 121 | 121 |
| 122 // InspectorRuntimeAgent::Client implementation. | 122 // InspectorRuntimeAgent::Client implementation. |
| 123 void resumeStartup() override; | 123 void resumeStartup() override; |
| 124 | 124 |
| 125 // InspectorPageAgent::Client implementation. | 125 // InspectorPageAgent::Client implementation. |
| 126 void pageLayoutInvalidated() override; | 126 void pageLayoutInvalidated() override; |
| 127 void setPausedInDebuggerMessage(const String*) override; | 127 void setPausedInDebuggerMessage(const String&) override; |
| 128 void waitForCreateWindow(LocalFrame*) override; | 128 void waitForCreateWindow(LocalFrame*) override; |
| 129 | 129 |
| 130 // protocol::FrontendChannel implementation. | 130 // protocol::FrontendChannel implementation. |
| 131 void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject>
message) override; | 131 void sendProtocolResponse(int sessionId, int callId, PassRefPtr<JSONObject>
message) override; |
| 132 void sendProtocolNotification(PassRefPtr<JSONObject> message) override; | 132 void sendProtocolNotification(PassRefPtr<JSONObject> message) override; |
| 133 void flush() override; | 133 void flush() override; |
| 134 | 134 |
| 135 // WebThread::TaskObserver implementation. | 135 // WebThread::TaskObserver implementation. |
| 136 void willProcessTask() override; | 136 void willProcessTask() override; |
| 137 void didProcessTask() override; | 137 void didProcessTask() override; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 int m_sessionId; | 169 int m_sessionId; |
| 170 String m_stateCookie; | 170 String m_stateCookie; |
| 171 bool m_stateMuted; | 171 bool m_stateMuted; |
| 172 | 172 |
| 173 friend class DebuggerTask; | 173 friend class DebuggerTask; |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace blink | 176 } // namespace blink |
| 177 | 177 |
| 178 #endif | 178 #endif |
| OLD | NEW |