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

Unified Diff: Source/bindings/modules/v8/custom/V8CryptoKeyCustom.cpp

Issue 660243003: v8::Handle should be replaced with v8::Local in Source/bindings/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git/+/master
Patch Set: Created 6 years, 2 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/modules/v8/custom/V8CryptoKeyCustom.cpp
diff --git a/Source/bindings/modules/v8/custom/V8CryptoKeyCustom.cpp b/Source/bindings/modules/v8/custom/V8CryptoKeyCustom.cpp
index ba52c8d2609c23025281df004fe3cb5f926be563..5dab691b7f826821befd615de90fbb4ff1921880 100644
--- a/Source/bindings/modules/v8/custom/V8CryptoKeyCustom.cpp
+++ b/Source/bindings/modules/v8/custom/V8CryptoKeyCustom.cpp
@@ -15,7 +15,7 @@ namespace blink {
class DictionaryBuilder : public blink::WebCryptoKeyAlgorithmDictionary {
public:
- DictionaryBuilder(v8::Handle<v8::Object> holder, v8::Isolate* isolate)
+ DictionaryBuilder(v8::Local<v8::Object> holder, v8::Isolate* isolate)
: m_holder(holder)
, m_isolate(isolate)
, m_dictionary(Dictionary::createEmpty(isolate))
@@ -50,7 +50,7 @@ public:
const Dictionary& dictionary() const { return m_dictionary; }
private:
- v8::Handle<v8::Object> m_holder;
+ v8::Local<v8::Object> m_holder;
v8::Isolate* m_isolate;
Dictionary m_dictionary;
};

Powered by Google App Engine
This is Rietveld 408576698