OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2012 Ericsson AB. All rights reserved. | 3 * Copyright (C) 2012 Ericsson AB. 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 are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * 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 30 matching lines...) Expand all Loading... |
41 #include "bindings/core/v8/ScriptValue.h" | 41 #include "bindings/core/v8/ScriptValue.h" |
42 #include "bindings/core/v8/ScriptWrappable.h" | 42 #include "bindings/core/v8/ScriptWrappable.h" |
43 #include "bindings/core/v8/V8BindingMacros.h" | 43 #include "bindings/core/v8/V8BindingMacros.h" |
44 #include "bindings/core/v8/V8PerIsolateData.h" | 44 #include "bindings/core/v8/V8PerIsolateData.h" |
45 #include "bindings/core/v8/V8ScriptRunner.h" | 45 #include "bindings/core/v8/V8ScriptRunner.h" |
46 #include "bindings/core/v8/V8StringResource.h" | 46 #include "bindings/core/v8/V8StringResource.h" |
47 #include "bindings/core/v8/V8ThrowException.h" | 47 #include "bindings/core/v8/V8ThrowException.h" |
48 #include "bindings/core/v8/V8ValueCache.h" | 48 #include "bindings/core/v8/V8ValueCache.h" |
49 #include "core/CoreExport.h" | 49 #include "core/CoreExport.h" |
50 #include "platform/heap/Handle.h" | 50 #include "platform/heap/Handle.h" |
51 #include "v8/include/v8.h" | |
52 #include "wtf/text/AtomicString.h" | 51 #include "wtf/text/AtomicString.h" |
53 #include "wtf/text/StringView.h" | 52 #include "wtf/text/StringView.h" |
| 53 #include <v8.h> |
54 | 54 |
55 namespace blink { | 55 namespace blink { |
56 | 56 |
57 class DOMWindow; | 57 class DOMWindow; |
58 class EventListener; | 58 class EventListener; |
59 class EventTarget; | 59 class EventTarget; |
60 class ExceptionState; | 60 class ExceptionState; |
61 class ExecutionContext; | 61 class ExecutionContext; |
62 class FlexibleArrayBufferView; | 62 class FlexibleArrayBufferView; |
63 class Frame; | 63 class Frame; |
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1134 // If the argument isn't an object, this will crash. | 1134 // If the argument isn't an object, this will crash. |
1135 CORE_EXPORT v8::Local<v8::Value> freezeV8Object(v8::Local<v8::Value>, | 1135 CORE_EXPORT v8::Local<v8::Value> freezeV8Object(v8::Local<v8::Value>, |
1136 v8::Isolate*); | 1136 v8::Isolate*); |
1137 | 1137 |
1138 CORE_EXPORT v8::Local<v8::Value> fromJSONString(v8::Isolate*, | 1138 CORE_EXPORT v8::Local<v8::Value> fromJSONString(v8::Isolate*, |
1139 const String& stringifiedJSON, | 1139 const String& stringifiedJSON, |
1140 ExceptionState&); | 1140 ExceptionState&); |
1141 } // namespace blink | 1141 } // namespace blink |
1142 | 1142 |
1143 #endif // V8Binding_h | 1143 #endif // V8Binding_h |
OLD | NEW |