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

Unified Diff: Source/core/streams/ReadableStreamReaderTest.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/loader/FrameLoaderClient.h ('k') | Source/core/streams/ReadableStreamTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ReadableStreamReaderTest.cpp
diff --git a/Source/core/streams/ReadableStreamReaderTest.cpp b/Source/core/streams/ReadableStreamReaderTest.cpp
index 66ab13d2dda7065587057261fe73ca97a6845a80..a6718f9390d7a539a02dac04a508a3ad42c8508b 100644
--- a/Source/core/streams/ReadableStreamReaderTest.cpp
+++ b/Source/core/streams/ReadableStreamReaderTest.cpp
@@ -34,7 +34,7 @@ struct ReadResult {
class StringCapturingFunction final : 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();
@@ -59,7 +59,7 @@ private:
class ReadResultCapturingFunction final : public ScriptFunction {
public:
- static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, ReadResult* value)
+ static v8::Local<v8::Function> createFunction(ScriptState* scriptState, ReadResult* value)
{
ReadResultCapturingFunction* self = new ReadResultCapturingFunction(scriptState, value);
return self->bindToV8Function();
@@ -145,12 +145,12 @@ public:
v8::Isolate* isolate() { return scriptState()->isolate(); }
ExecutionContext* executionContext() { return scriptState()->executionContext(); }
- v8::Handle<v8::Function> createCaptor(String* value)
+ v8::Local<v8::Function> createCaptor(String* value)
{
return StringCapturingFunction::createFunction(scriptState(), value);
}
- v8::Handle<v8::Function> createResultCaptor(ReadResult* value)
+ v8::Local<v8::Function> createResultCaptor(ReadResult* value)
{
return ReadResultCapturingFunction::createFunction(scriptState(), value);
}
« no previous file with comments | « Source/core/loader/FrameLoaderClient.h ('k') | Source/core/streams/ReadableStreamTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698