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

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

Issue 1071963002: Replace Handle<> with 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/ScriptFunction.cpp ('k') | Source/bindings/core/v8/ScriptString.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptString.h
diff --git a/Source/bindings/core/v8/ScriptString.h b/Source/bindings/core/v8/ScriptString.h
index aff90e05a2b0286fccbc51414e12ba78397de6af..83363149a439b7e80f36e616d4adbece2c4b208a 100644
--- a/Source/bindings/core/v8/ScriptString.h
+++ b/Source/bindings/core/v8/ScriptString.h
@@ -41,7 +41,7 @@ namespace blink {
class ScriptString final {
public:
ScriptString();
- ScriptString(v8::Isolate*, v8::Handle<v8::String>);
+ ScriptString(v8::Isolate*, v8::Local<v8::String>);
ScriptString& operator=(const ScriptString&);
v8::Isolate* isolate()
@@ -52,7 +52,7 @@ public:
}
bool isEmpty() const { return !m_string || m_string->isEmpty(); }
void clear() { m_string = nullptr; }
- v8::Handle<v8::String> v8Value();
+ v8::Local<v8::String> v8Value();
ScriptString concatenateWith(const String&);
String flattenToString();
« no previous file with comments | « Source/bindings/core/v8/ScriptFunction.cpp ('k') | Source/bindings/core/v8/ScriptString.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698