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

Unified Diff: Source/bindings/core/v8/WrapCanvasContext.cpp

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
« no previous file with comments | « Source/bindings/core/v8/V8ThrowException.cpp ('k') | Source/bindings/core/v8/WrapperTypeInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/WrapCanvasContext.cpp
diff --git a/Source/bindings/core/v8/WrapCanvasContext.cpp b/Source/bindings/core/v8/WrapCanvasContext.cpp
index 4ad82730759a7cfb908a3acebcfaa314c8f22e5f..167ed04213df5119f7a8d8c04624f4123d899fc3 100644
--- a/Source/bindings/core/v8/WrapCanvasContext.cpp
+++ b/Source/bindings/core/v8/WrapCanvasContext.cpp
@@ -13,14 +13,14 @@ namespace blink {
ScriptValue wrapCanvasContext(ScriptState* scriptState, HTMLCanvasElement* canvas, PassRefPtrWillBeRawPtr<CanvasRenderingContext2D> value)
{
- v8::Handle<v8::Value> v8Result = toV8(value, scriptState->context()->Global(), scriptState->isolate());
+ v8::Local<v8::Value> v8Result = toV8(value, scriptState->context()->Global(), scriptState->isolate());
ScriptValue context(scriptState, v8Result);
return context;
}
ScriptValue wrapCanvasContext(ScriptState* scriptState, HTMLCanvasElement* canvas, PassRefPtrWillBeRawPtr<WebGLRenderingContext> value)
{
- v8::Handle<v8::Value> v8Result = toV8(value, scriptState->context()->Global(), scriptState->isolate());
+ v8::Local<v8::Value> v8Result = toV8(value, scriptState->context()->Global(), scriptState->isolate());
ScriptValue context(scriptState, v8Result);
return context;
}
« no previous file with comments | « Source/bindings/core/v8/V8ThrowException.cpp ('k') | Source/bindings/core/v8/WrapperTypeInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698