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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp

Issue 1079003002: bindings: v8::Handle -> v8::Local in Source/Modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed build errors 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
Index: Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
diff --git a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
index 74a9a26704c92865ef2fbeeedb3d5c7f9f1d970a..3acd199a27f7ecf5ca1cb3756b199e515d5bb855 100644
--- a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
+++ b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp
@@ -42,7 +42,7 @@ public:
// The returned ScriptFunction can outlive the StubScriptFunction,
// but it should not be called after the StubScriptFunction dies.
- v8::Handle<v8::Function> function(ScriptState* scriptState)
+ v8::Local<v8::Function> function(ScriptState* scriptState)
{
return ScriptFunctionImpl::createFunction(scriptState, *this);
}
@@ -56,7 +56,7 @@ private:
class ScriptFunctionImpl : public ScriptFunction {
public:
- static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, StubScriptFunction& owner)
+ static v8::Local<v8::Function> createFunction(ScriptState* scriptState, StubScriptFunction& owner)
{
ScriptFunctionImpl* self = new ScriptFunctionImpl(scriptState, owner);
return self->bindToV8Function();
« no previous file with comments | « Source/modules/serviceworkers/RespondWithObserver.cpp ('k') | Source/modules/serviceworkers/WaitUntilObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698