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

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

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/Headers.h ('k') | Source/modules/serviceworkers/HeadersForEachCallback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Headers.cpp
diff --git a/Source/modules/serviceworkers/Headers.cpp b/Source/modules/serviceworkers/Headers.cpp
index ea86990dfe462b396a0e0c6a3b9af7e038d9e592..664ea2140829b85b7ddd864b0743b0b6ea6a159d 100644
--- a/Source/modules/serviceworkers/Headers.cpp
+++ b/Source/modules/serviceworkers/Headers.cpp
@@ -208,12 +208,12 @@ void Headers::set(const String& name, const String& value, ExceptionState& excep
m_headerList->set(name, value);
}
-void Headers::forEach(PassOwnPtrWillBeRawPtr<HeadersForEachCallback> callback, const ScriptValue& thisArg)
+void Headers::forEach(HeadersForEachCallback* callback, const ScriptValue& thisArg)
{
forEachInternal(callback, &thisArg);
}
-void Headers::forEach(PassOwnPtrWillBeRawPtr<HeadersForEachCallback> callback)
+void Headers::forEach(HeadersForEachCallback* callback)
{
forEachInternal(callback, 0);
}
@@ -305,7 +305,7 @@ Headers::Headers(FetchHeaderList* headerList)
{
}
-void Headers::forEachInternal(PassOwnPtrWillBeRawPtr<HeadersForEachCallback> callback, const ScriptValue* thisArg)
+void Headers::forEachInternal(HeadersForEachCallback* callback, const ScriptValue* thisArg)
{
TrackExceptionState exceptionState;
for (size_t i = 0; i < m_headerList->size(); ++i) {
« no previous file with comments | « Source/modules/serviceworkers/Headers.h ('k') | Source/modules/serviceworkers/HeadersForEachCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698