| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "platform/bindings/V8BindingMacros.h" | 35 #include "platform/bindings/V8BindingMacros.h" |
| 36 #include "platform/loader/fetch/AccessControlStatus.h" | 36 #include "platform/loader/fetch/AccessControlStatus.h" |
| 37 #include "platform/wtf/Allocator.h" | 37 #include "platform/wtf/Allocator.h" |
| 38 #include "platform/wtf/text/TextPosition.h" | 38 #include "platform/wtf/text/TextPosition.h" |
| 39 #include "platform/wtf/text/WTFString.h" | 39 #include "platform/wtf/text/WTFString.h" |
| 40 #include "v8/include/v8.h" | 40 #include "v8/include/v8.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class CachedMetadataHandler; | 44 class CachedMetadataHandler; |
| 45 class ScriptResource; | 45 class ScriptResourceData; |
| 46 class ScriptSourceCode; | 46 class ScriptSourceCode; |
| 47 class ExecutionContext; | 47 class ExecutionContext; |
| 48 class ScriptStreamer; | 48 class ScriptStreamer; |
| 49 | 49 |
| 50 class CORE_EXPORT V8ScriptRunner final { | 50 class CORE_EXPORT V8ScriptRunner final { |
| 51 STATIC_ONLY(V8ScriptRunner); | 51 STATIC_ONLY(V8ScriptRunner); |
| 52 | 52 |
| 53 public: | 53 public: |
| 54 // For the following methods, the caller sites have to hold | 54 // For the following methods, the caller sites have to hold |
| 55 // a HandleScope and a ContextScope. | 55 // a HandleScope and a ContextScope. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 67 V8CacheOptions); | 67 V8CacheOptions); |
| 68 // CachedMetadataHandler is set when metadata caching is supported. For | 68 // CachedMetadataHandler is set when metadata caching is supported. For |
| 69 // normal scripe resources, CachedMetadataHandler is from ScriptResource. | 69 // normal scripe resources, CachedMetadataHandler is from ScriptResource. |
| 70 // For worker script, ScriptResource is null but CachedMetadataHandler may be | 70 // For worker script, ScriptResource is null but CachedMetadataHandler may be |
| 71 // set. When ScriptStreamer is set, ScriptResource must be set. | 71 // set. When ScriptStreamer is set, ScriptResource must be set. |
| 72 static v8::MaybeLocal<v8::Script> CompileScript(ScriptState*, | 72 static v8::MaybeLocal<v8::Script> CompileScript(ScriptState*, |
| 73 v8::Local<v8::String>, | 73 v8::Local<v8::String>, |
| 74 const String& file_name, | 74 const String& file_name, |
| 75 const String& source_map_url, | 75 const String& source_map_url, |
| 76 const TextPosition&, | 76 const TextPosition&, |
| 77 ScriptResource*, | 77 const ScriptResourceData*, |
| 78 ScriptStreamer*, | 78 ScriptStreamer*, |
| 79 CachedMetadataHandler*, | 79 CachedMetadataHandler*, |
| 80 AccessControlStatus, | 80 AccessControlStatus, |
| 81 V8CacheOptions); | 81 V8CacheOptions); |
| 82 static v8::MaybeLocal<v8::Module> CompileModule(v8::Isolate*, | 82 static v8::MaybeLocal<v8::Module> CompileModule(v8::Isolate*, |
| 83 const String& source, | 83 const String& source, |
| 84 const String& file_name, | 84 const String& file_name, |
| 85 AccessControlStatus, | 85 AccessControlStatus, |
| 86 const TextPosition&); | 86 const TextPosition&); |
| 87 static v8::MaybeLocal<v8::Value> RunCompiledScript(v8::Isolate*, | 87 static v8::MaybeLocal<v8::Value> RunCompiledScript(v8::Isolate*, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 private: | 153 private: |
| 154 static v8::MaybeLocal<v8::Value> CallExtraHelper(ScriptState*, | 154 static v8::MaybeLocal<v8::Value> CallExtraHelper(ScriptState*, |
| 155 const char* name, | 155 const char* name, |
| 156 size_t num_args, | 156 size_t num_args, |
| 157 v8::Local<v8::Value>* args); | 157 v8::Local<v8::Value>* args); |
| 158 }; | 158 }; |
| 159 | 159 |
| 160 } // namespace blink | 160 } // namespace blink |
| 161 | 161 |
| 162 #endif // V8ScriptRunner_h | 162 #endif // V8ScriptRunner_h |
| OLD | NEW |