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

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

Issue 453713004: Oilpan: fix build after r179871 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/modules/serviceworkers/Cache.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Cache.cpp
diff --git a/Source/modules/serviceworkers/Cache.cpp b/Source/modules/serviceworkers/Cache.cpp
index 50e073fb4a83182c3fee7225023b0dcf303f6e68..81d757ee77a7b3755f09fd316ab910fa42b78fdd 100644
--- a/Source/modules/serviceworkers/Cache.cpp
+++ b/Source/modules/serviceworkers/Cache.cpp
@@ -59,7 +59,7 @@ ScriptPromise Cache::add(ScriptState* scriptState, const String& requestString)
return rejectAsNotImplemented(scriptState);
}
-ScriptPromise Cache::addAll(ScriptState* scriptState, const WillBeHeapVector<ScriptValue>& rawRequests)
+ScriptPromise Cache::addAll(ScriptState* scriptState, const Vector<ScriptValue>& rawRequests)
{
return rejectAsNotImplemented(scriptState);
}
« no previous file with comments | « Source/modules/serviceworkers/Cache.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698