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

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

Issue 2709703004: Clean up V8ObjectConstructor (Closed)
Patch Set: Rebase Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.h b/third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.h
index ce8fe93c57a6d91bdae70e8d4fa6c3f970b7aeac..4c01ebcdf04f3df96f38a9ba82d3f041e40b2b2f 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.h
@@ -116,26 +116,12 @@ class CORE_EXPORT V8ScriptRunner final {
static v8::MaybeLocal<v8::Value> evaluateModule(v8::Local<v8::Module>,
v8::Local<v8::Context>,
v8::Isolate*);
- static v8::MaybeLocal<v8::Object> instantiateObject(
- v8::Isolate*,
- v8::Local<v8::ObjectTemplate>);
- static v8::MaybeLocal<v8::Object> instantiateObject(
- v8::Isolate*,
- v8::Local<v8::Function>,
- int argc = 0,
- v8::Local<v8::Value> argv[] = 0);
- static v8::MaybeLocal<v8::Object> instantiateObjectInDocument(
- v8::Isolate*,
- v8::Local<v8::Function>,
- ExecutionContext*,
- int argc = 0,
- v8::Local<v8::Value> argv[] = 0);
static uint32_t tagForParserCache(CachedMetadataHandler*);
static uint32_t tagForCodeCache(CachedMetadataHandler*);
static void setCacheTimeStamp(CachedMetadataHandler*);
- // Utiltiies for calling functions added to the V8 extras binding object.
+ // Utilities for calling functions added to the V8 extras binding object.
template <size_t N>
static v8::MaybeLocal<v8::Value> callExtra(ScriptState* scriptState,

Powered by Google App Engine
This is Rietveld 408576698