| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8DebuggerClient_h | 5 #ifndef V8DebuggerClient_h |
| 6 #define V8DebuggerClient_h | 6 #define V8DebuggerClient_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | 8 #include "platform/inspector_protocol/Platform.h" |
| 9 #include "platform/v8_inspector/public/ConsoleAPITypes.h" | 9 #include "platform/v8_inspector/public/ConsoleAPITypes.h" |
| 10 #include "platform/v8_inspector/public/ConsoleTypes.h" | 10 #include "platform/v8_inspector/public/ConsoleTypes.h" |
| 11 #include "platform/v8_inspector/public/V8ContextInfo.h" | 11 #include "platform/v8_inspector/public/V8ContextInfo.h" |
| 12 | 12 |
| 13 #include <v8.h> | 13 #include <v8.h> |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class PLATFORM_EXPORT V8DebuggerClient { | 17 class PLATFORM_EXPORT V8DebuggerClient { |
| 18 public: | 18 public: |
| (...skipping 25 matching lines...) Expand all Loading... |
| 44 | 44 |
| 45 typedef void (*TimerCallback)(void*); | 45 typedef void (*TimerCallback)(void*); |
| 46 virtual void startRepeatingTimer(double, TimerCallback, void* data) = 0; | 46 virtual void startRepeatingTimer(double, TimerCallback, void* data) = 0; |
| 47 virtual void cancelTimer(void* data) = 0; | 47 virtual void cancelTimer(void* data) = 0; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 } // namespace blink | 50 } // namespace blink |
| 51 | 51 |
| 52 | 52 |
| 53 #endif // V8DebuggerClient_h | 53 #endif // V8DebuggerClient_h |
| OLD | NEW |