| 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 "platform/wtf/text/AtomicString.h" |
| 52 #include "platform/wtf/text/StringView.h" |
| 51 #include "v8/include/v8.h" | 53 #include "v8/include/v8.h" |
| 52 #include "wtf/text/AtomicString.h" | |
| 53 #include "wtf/text/StringView.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 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1155 // If the argument isn't an object, this will crash. | 1155 // If the argument isn't an object, this will crash. |
| 1156 CORE_EXPORT v8::Local<v8::Value> freezeV8Object(v8::Local<v8::Value>, | 1156 CORE_EXPORT v8::Local<v8::Value> freezeV8Object(v8::Local<v8::Value>, |
| 1157 v8::Isolate*); | 1157 v8::Isolate*); |
| 1158 | 1158 |
| 1159 CORE_EXPORT v8::Local<v8::Value> fromJSONString(v8::Isolate*, | 1159 CORE_EXPORT v8::Local<v8::Value> fromJSONString(v8::Isolate*, |
| 1160 const String& stringifiedJSON, | 1160 const String& stringifiedJSON, |
| 1161 ExceptionState&); | 1161 ExceptionState&); |
| 1162 } // namespace blink | 1162 } // namespace blink |
| 1163 | 1163 |
| 1164 #endif // V8Binding_h | 1164 #endif // V8Binding_h |
| OLD | NEW |