| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef V8DebuggerScript_h | 30 #ifndef V8DebuggerScript_h |
| 31 #define V8DebuggerScript_h | 31 #define V8DebuggerScript_h |
| 32 | 32 |
| 33 #include "platform/inspector_protocol/Allocator.h" | 33 #include "platform/inspector_protocol/Allocator.h" |
| 34 #include "wtf/Vector.h" | |
| 35 #include "wtf/text/WTFString.h" | 34 #include "wtf/text/WTFString.h" |
| 36 #include <v8.h> | 35 #include <v8.h> |
| 37 | 36 |
| 38 namespace blink { | 37 namespace blink { |
| 39 | 38 |
| 40 class V8DebuggerScript { | 39 class V8DebuggerScript { |
| 41 PROTOCOL_DISALLOW_NEW(); | 40 PROTOCOL_DISALLOW_NEW(); |
| 42 public: | 41 public: |
| 43 V8DebuggerScript(); | 42 V8DebuggerScript(); |
| 44 | 43 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 struct V8DebuggerParsedScript { | 89 struct V8DebuggerParsedScript { |
| 91 String scriptId; | 90 String scriptId; |
| 92 V8DebuggerScript script; | 91 V8DebuggerScript script; |
| 93 bool success; | 92 bool success; |
| 94 }; | 93 }; |
| 95 | 94 |
| 96 } // namespace blink | 95 } // namespace blink |
| 97 | 96 |
| 98 | 97 |
| 99 #endif // V8DebuggerScript_h | 98 #endif // V8DebuggerScript_h |
| OLD | NEW |