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

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

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/V8PerIsolateData.cpp ('k') | Source/bindings/core/v8/V8StringResource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8StringResource.h
diff --git a/Source/bindings/core/v8/V8StringResource.h b/Source/bindings/core/v8/V8StringResource.h
index f24bd9c9335b25fda8b865c0242cbe54bc7c34e9..874ac5eee04105e828e163c0ccf8f859709ff7c3 100644
--- a/Source/bindings/core/v8/V8StringResource.h
+++ b/Source/bindings/core/v8/V8StringResource.h
@@ -154,7 +154,7 @@ enum ExternalMode {
};
template <typename StringType>
-CORE_EXPORT StringType v8StringToWebCoreString(v8::Handle<v8::String>, ExternalMode);
+CORE_EXPORT StringType v8StringToWebCoreString(v8::Local<v8::String>, ExternalMode);
CORE_EXPORT String int32ToWebCoreString(int value);
// V8StringResource is an adapter class that converts V8 values to Strings
@@ -174,7 +174,7 @@ public:
{
}
- V8StringResource(v8::Handle<v8::Value> object)
+ V8StringResource(v8::Local<v8::Value> object)
: m_v8Object(object)
, m_mode(Externalize)
{
@@ -186,7 +186,7 @@ public:
{
}
- void operator=(v8::Handle<v8::Value> object)
+ void operator=(v8::Local<v8::Value> object)
{
m_v8Object = object;
}
« no previous file with comments | « Source/bindings/core/v8/V8PerIsolateData.cpp ('k') | Source/bindings/core/v8/V8StringResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698