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

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

Issue 2032373002: Revert of Implement the script parts of custom element upgrade steps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ce-upgrade-in-document-dom-merge2
Patch Set: Created 4 years, 6 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
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, bool isInternalScript = false);
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);
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*); 65 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*); 66 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>); 67 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); 68 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); 69 static v8::MaybeLocal<v8::Object> instantiateObjectInDocument(v8::Isolate*, v8::Local<v8::Function>, ExecutionContext*, int argc = 0, v8::Local<v8::Value> a rgv[] = 0);
71 70
72 static unsigned tagForParserCache(CachedMetadataHandler*); 71 static unsigned tagForParserCache(CachedMetadataHandler*);
73 static unsigned tagForCodeCache(CachedMetadataHandler*); 72 static unsigned tagForCodeCache(CachedMetadataHandler*);
74 static void setCacheTimeStamp(CachedMetadataHandler*); 73 static void setCacheTimeStamp(CachedMetadataHandler*);
75 74
(...skipping 21 matching lines...) Expand all
97 if (functionValue.IsEmpty()) 96 if (functionValue.IsEmpty())
98 return v8::MaybeLocal<v8::Value>(); 97 return v8::MaybeLocal<v8::Value>();
99 v8::Local<v8::Function> function = functionValue.As<v8::Function>(); 98 v8::Local<v8::Function> function = functionValue.As<v8::Function>();
100 return V8ScriptRunner::callInternalFunction(function, undefined, numArgs , args, isolate); 99 return V8ScriptRunner::callInternalFunction(function, undefined, numArgs , args, isolate);
101 } 100 }
102 }; 101 };
103 102
104 } // namespace blink 103 } // namespace blink
105 104
106 #endif // V8ScriptRunner_h 105 #endif // V8ScriptRunner_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698