| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef V8RuntimeAgent_h | |
| 6 #define V8RuntimeAgent_h | |
| 7 | |
| 8 #include "platform/PlatformExport.h" | |
| 9 #include "platform/inspector_protocol/Dispatcher.h" | |
| 10 #include "platform/v8_inspector/public/V8Debugger.h" | |
| 11 | |
| 12 namespace blink { | |
| 13 | |
| 14 class InjectedScriptManager; | |
| 15 | |
| 16 class PLATFORM_EXPORT V8RuntimeAgent : public protocol::Backend::Runtime, public
V8Debugger::Agent<protocol::Frontend::Runtime> { | |
| 17 public: | |
| 18 virtual ~V8RuntimeAgent() { } | |
| 19 }; | |
| 20 | |
| 21 } // namespace blink | |
| 22 | |
| 23 #endif // V8RuntimeAgent_h | |
| OLD | NEW |