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

Unified Diff: Source/core/streams/ReadableStreamTest.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/streams/ReadableStreamReaderTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ReadableStreamTest.cpp
diff --git a/Source/core/streams/ReadableStreamTest.cpp b/Source/core/streams/ReadableStreamTest.cpp
index 35a35050cac07ce8e64b47033a5e86c968af6b31..16d284260aa5bbfec983cff3433ca35597bdd370 100644
--- a/Source/core/streams/ReadableStreamTest.cpp
+++ b/Source/core/streams/ReadableStreamTest.cpp
@@ -34,7 +34,7 @@ using StringStream = ReadableStreamImpl<ReadableStreamChunkTypeTraits<String>>;
class StringCapturingFunction : public ScriptFunction {
public:
- static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
+ static v8::Local<v8::Function> createFunction(ScriptState* scriptState, String* value)
{
StringCapturingFunction* self = new StringCapturingFunction(scriptState, value);
return self->bindToV8Function();
@@ -118,7 +118,7 @@ public:
ScriptState* scriptState() { return ScriptState::forMainWorld(m_page->document().frame()); }
v8::Isolate* isolate() { return scriptState()->isolate(); }
- v8::Handle<v8::Function> createCaptor(String* value)
+ v8::Local<v8::Function> createCaptor(String* value)
{
return StringCapturingFunction::createFunction(scriptState(), value);
}
« no previous file with comments | « Source/core/streams/ReadableStreamReaderTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698