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

Unified Diff: Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp

Issue 1074683002: [bindings] Use Local<> instead of Handle<> (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/custom/V8ErrorEventCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp b/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
index ab5745bf05becf39f779679eb607b1f36182dc0a..e79fc7f97313f1c9ad6e1dc7f4b1d4eaf3d68cc7 100644
--- a/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
@@ -45,7 +45,7 @@ namespace blink {
void V8ErrorEvent::errorAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
{
- v8::Handle<v8::Value> error = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::error(info.GetIsolate()));
+ v8::Local<v8::Value> error = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::error(info.GetIsolate()));
if (!error.IsEmpty()) {
v8SetReturnValue(info, error);
return;
« no previous file with comments | « Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp ('k') | Source/bindings/core/v8/custom/V8EventTargetCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698