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

Unified Diff: Source/bindings/core/v8/ScriptPromisePropertyBase.h

Issue 1111163003: Replace v8::Handle<> with v8::Local<> in bindings/core/v8/* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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: Source/bindings/core/v8/ScriptPromisePropertyBase.h
diff --git a/Source/bindings/core/v8/ScriptPromisePropertyBase.h b/Source/bindings/core/v8/ScriptPromisePropertyBase.h
index eec77f41b91837c95e2f088da507c0e50d227b61..ea35525ba25d2ed9ec2a8e896665cf41e336fbd9 100644
--- a/Source/bindings/core/v8/ScriptPromisePropertyBase.h
+++ b/Source/bindings/core/v8/ScriptPromisePropertyBase.h
@@ -54,21 +54,21 @@ protected:
// the property's execution context and the world it is
// creating/settling promises in; the implementation should use
// this context.
- virtual v8::Handle<v8::Object> holder(v8::Isolate*, v8::Handle<v8::Object> creationContext) = 0;
- virtual v8::Handle<v8::Value> resolvedValue(v8::Isolate*, v8::Handle<v8::Object> creationContext) = 0;
- virtual v8::Handle<v8::Value> rejectedValue(v8::Isolate*, v8::Handle<v8::Object> creationContext) = 0;
+ virtual v8::Local<v8::Object> holder(v8::Isolate*, v8::Local<v8::Object> creationContext) = 0;
+ virtual v8::Local<v8::Value> resolvedValue(v8::Isolate*, v8::Local<v8::Object> creationContext) = 0;
+ virtual v8::Local<v8::Value> rejectedValue(v8::Isolate*, v8::Local<v8::Object> creationContext) = 0;
void resetBase();
private:
typedef Vector<OwnPtr<ScopedPersistent<v8::Object>>> WeakPersistentSet;
- void resolveOrRejectInternal(v8::Handle<v8::Promise::Resolver>);
+ void resolveOrRejectInternal(v8::Local<v8::Promise::Resolver>);
v8::Local<v8::Object> ensureHolderWrapper(ScriptState*);
void clearWrappers();
- v8::Handle<v8::String> promiseName();
- v8::Handle<v8::String> resolverName();
+ v8::Local<v8::String> promiseName();
+ v8::Local<v8::String> resolverName();
v8::Isolate* m_isolate;
Name m_name;
« no previous file with comments | « Source/bindings/core/v8/ScriptPromiseProperty.h ('k') | Source/bindings/core/v8/ScriptPromisePropertyBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698