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

Unified Diff: Source/bindings/v8/custom/V8PromiseCustom.h

Issue 23961005: Pass isolate to v8 integers factory functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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
« no previous file with comments | « Source/bindings/v8/custom/V8BlobCustom.cpp ('k') | Source/bindings/v8/custom/V8PromiseCustom.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/custom/V8PromiseCustom.h
diff --git a/Source/bindings/v8/custom/V8PromiseCustom.h b/Source/bindings/v8/custom/V8PromiseCustom.h
index 930f3f60fe2798e51e1f5d4b67de0bbac9e70ce2..8b0957cf2070d553ffa5f7a574e976813464cf43 100644
--- a/Source/bindings/v8/custom/V8PromiseCustom.h
+++ b/Source/bindings/v8/custom/V8PromiseCustom.h
@@ -100,12 +100,12 @@ public:
// Clear the Promise / PromiseResolver internal object with the given state and result.
// This function clears callbacks in the object.
- static void clearInternal(v8::Handle<v8::Object> internal, PromiseState, v8::Handle<v8::Value> result);
+ static void clearInternal(v8::Handle<v8::Object> internal, PromiseState, v8::Handle<v8::Value> result, v8::Isolate*);
// |internal| must be an Promise / PromiseResolver internal object.
static PromiseState getState(v8::Handle<v8::Object> internal);
// |internal| must be an Promise / PromiseResolver internal object.
- static void setState(v8::Handle<v8::Object> internal, PromiseState);
+ static void setState(v8::Handle<v8::Object> internal, PromiseState, v8::Isolate*);
// Call |function| synchronously or asynchronously, depending on |mode|.
// If |function| throws an exception, this function catches it and does not rethrow.
« no previous file with comments | « Source/bindings/v8/custom/V8BlobCustom.cpp ('k') | Source/bindings/v8/custom/V8PromiseCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698