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

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

Issue 1077043002: bindings: v8::Handle -> v8::Local in CostumElementBinding (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed rebase issue 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
« no previous file with comments | « no previous file | Source/bindings/core/v8/CustomElementBinding.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/CustomElementBinding.h
diff --git a/Source/bindings/core/v8/CustomElementBinding.h b/Source/bindings/core/v8/CustomElementBinding.h
index 406ab3a512a1d86ba5a1ea2c70ce222260952d2e..319a67661641a9677eee7c28155c846b6b9fdd56 100644
--- a/Source/bindings/core/v8/CustomElementBinding.h
+++ b/Source/bindings/core/v8/CustomElementBinding.h
@@ -39,11 +39,11 @@ namespace blink {
class CustomElementBinding {
public:
- static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
+ static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
~CustomElementBinding();
private:
- CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype);
+ CustomElementBinding(v8::Isolate*, v8::Local<v8::Object> prototype);
ScopedPersistent<v8::Object> m_prototype;
};
« no previous file with comments | « no previous file | Source/bindings/core/v8/CustomElementBinding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698