Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.h

Issue 2179943002: Remove isInternalFlag from V8ScriptRunner interface in blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 STATIC_ONLY(V8ScriptRunner); 51 STATIC_ONLY(V8ScriptRunner);
52 public: 52 public:
53 // For the following methods, the caller sites have to hold 53 // For the following methods, the caller sites have to hold
54 // a HandleScope and a ContextScope. 54 // a HandleScope and a ContextScope.
55 static v8::MaybeLocal<v8::Script> compileScript(const ScriptSourceCode&, v8: :Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOp tionsDefault); 55 static v8::MaybeLocal<v8::Script> compileScript(const ScriptSourceCode&, v8: :Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOp tionsDefault);
56 static v8::MaybeLocal<v8::Script> compileScript(const CompressibleString&, c onst String& fileName, const String& sourceMapUrl, const TextPosition&, v8::Isol ate*, CachedMetadataHandler* = nullptr, AccessControlStatus = SharableCrossOrigi n, V8CacheOptions = V8CacheOptionsDefault); 56 static v8::MaybeLocal<v8::Script> compileScript(const CompressibleString&, c onst String& fileName, const String& sourceMapUrl, const TextPosition&, v8::Isol ate*, CachedMetadataHandler* = nullptr, AccessControlStatus = SharableCrossOrigi n, V8CacheOptions = V8CacheOptionsDefault);
57 // CachedMetadataHandler is set when metadata caching is supported. For 57 // CachedMetadataHandler is set when metadata caching is supported. For
58 // normal scripe resources, CachedMetadataHandler is from ScriptResource. 58 // normal scripe resources, CachedMetadataHandler is from ScriptResource.
59 // For worker script, ScriptResource is null but CachedMetadataHandler may b e 59 // For worker script, ScriptResource is null but CachedMetadataHandler may b e
60 // set. When ScriptStreamer is set, ScriptResource must be set. 60 // set. When ScriptStreamer is set, ScriptResource must be set.
61 static v8::MaybeLocal<v8::Script> compileScript(v8::Local<v8::String>, const String& fileName, const String& sourceMapUrl, const TextPosition&, v8::Isolate* , ScriptResource* = nullptr, ScriptStreamer* = nullptr, CachedMetadataHandler* = nullptr, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOpt ionsDefault, bool isInternalScript = false); 61 static v8::MaybeLocal<v8::Script> compileScript(v8::Local<v8::String>, const String& fileName, const String& sourceMapUrl, const TextPosition&, v8::Isolate* , ScriptResource* = nullptr, ScriptStreamer* = nullptr, CachedMetadataHandler* = nullptr, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOpt ionsDefault);
62 static v8::MaybeLocal<v8::Value> runCompiledScript(v8::Isolate*, v8::Local<v 8::Script>, ExecutionContext*); 62 static v8::MaybeLocal<v8::Value> runCompiledScript(v8::Isolate*, v8::Local<v 8::Script>, ExecutionContext*);
63 static v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::S tring>, v8::Isolate*, const String& = String(), const TextPosition& = TextPositi on()); 63 static v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::S tring>, v8::Isolate*, const String& = String(), const TextPosition& = TextPositi on());
64 static v8::MaybeLocal<v8::Value> runCompiledInternalScript(v8::Isolate*, v8: :Local<v8::Script>); 64 static v8::MaybeLocal<v8::Value> runCompiledInternalScript(v8::Isolate*, v8: :Local<v8::Script>);
65 static v8::MaybeLocal<v8::Value> callAsConstructor(v8::Isolate*, v8::Local<v 8::Object>, ExecutionContext*, int argc = 0, v8::Local<v8::Value> argv[] = 0); 65 static v8::MaybeLocal<v8::Value> callAsConstructor(v8::Isolate*, v8::Local<v 8::Object>, ExecutionContext*, int argc = 0, v8::Local<v8::Value> argv[] = 0);
66 static v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function >, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[], v8::Iso late*); 66 static v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function >, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[], v8::Iso late*);
67 static v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>, Execu tionContext*, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info [], v8::Isolate*); 67 static v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>, Execu tionContext*, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info [], v8::Isolate*);
68 static v8::MaybeLocal<v8::Object> instantiateObject(v8::Isolate*, v8::Local< v8::ObjectTemplate>); 68 static v8::MaybeLocal<v8::Object> instantiateObject(v8::Isolate*, v8::Local< v8::ObjectTemplate>);
69 static v8::MaybeLocal<v8::Object> instantiateObject(v8::Isolate*, v8::Local< v8::Function>, int argc = 0, v8::Local<v8::Value> argv[] = 0); 69 static v8::MaybeLocal<v8::Object> instantiateObject(v8::Isolate*, v8::Local< v8::Function>, int argc = 0, v8::Local<v8::Value> argv[] = 0);
70 static v8::MaybeLocal<v8::Object> instantiateObjectInDocument(v8::Isolate*, v8::Local<v8::Function>, ExecutionContext*, int argc = 0, v8::Local<v8::Value> a rgv[] = 0); 70 static v8::MaybeLocal<v8::Object> instantiateObjectInDocument(v8::Isolate*, v8::Local<v8::Function>, ExecutionContext*, int argc = 0, v8::Local<v8::Value> a rgv[] = 0);
71 71
(...skipping 25 matching lines...) Expand all
97 if (functionValue.IsEmpty()) 97 if (functionValue.IsEmpty())
98 return v8::MaybeLocal<v8::Value>(); 98 return v8::MaybeLocal<v8::Value>();
99 v8::Local<v8::Function> function = functionValue.As<v8::Function>(); 99 v8::Local<v8::Function> function = functionValue.As<v8::Function>();
100 return V8ScriptRunner::callInternalFunction(function, undefined, numArgs , args, isolate); 100 return V8ScriptRunner::callInternalFunction(function, undefined, numArgs , args, isolate);
101 } 101 }
102 }; 102 };
103 103
104 } // namespace blink 104 } // namespace blink
105 105
106 #endif // V8ScriptRunner_h 106 #endif // V8ScriptRunner_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698