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

Unified Diff: Source/core/frame/DOMWindow.cpp

Issue 1107393003: Replace Handle with Local in Source/* (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
« no previous file with comments | « Source/core/frame/DOMWindow.h ('k') | Source/core/inspector/InjectedScriptNative.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/DOMWindow.cpp
diff --git a/Source/core/frame/DOMWindow.cpp b/Source/core/frame/DOMWindow.cpp
index 91e002b0aca2ce44c888399eedf2bede89aa1a60..55ecbc62069eec0c6a2eeaf223c958952bf0d500 100644
--- a/Source/core/frame/DOMWindow.cpp
+++ b/Source/core/frame/DOMWindow.cpp
@@ -32,18 +32,18 @@ DOMWindow::~DOMWindow()
{
}
-v8::Handle<v8::Object> DOMWindow::wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*)
+v8::Local<v8::Object> DOMWindow::wrap(v8::Local<v8::Object> creationContext, v8::Isolate*)
{
// DOMWindow must never be wrapped with wrap method. The wrappers must be
// created at WindowProxy::installDOMWindow().
RELEASE_ASSERT_NOT_REACHED();
- return v8::Handle<v8::Object>();
+ return v8::Local<v8::Object>();
}
-v8::Handle<v8::Object> DOMWindow::associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper)
+v8::Local<v8::Object> DOMWindow::associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper)
{
RELEASE_ASSERT_NOT_REACHED(); // same as wrap method
- return v8::Handle<v8::Object>();
+ return v8::Local<v8::Object>();
}
const AtomicString& DOMWindow::interfaceName() const
« no previous file with comments | « Source/core/frame/DOMWindow.h ('k') | Source/core/inspector/InjectedScriptNative.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698