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

Unified Diff: Source/modules/serviceworkers/HeadersForEachCallback.idl

Issue 358573002: [ServiceWorker] Implement Headers class. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated falken's comment Created 6 years, 6 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/HeadersForEachCallback.idl
diff --git a/Source/modules/serviceworkers/HeaderMapForEachCallback.idl b/Source/modules/serviceworkers/HeadersForEachCallback.idl
similarity index 61%
copy from Source/modules/serviceworkers/HeaderMapForEachCallback.idl
copy to Source/modules/serviceworkers/HeadersForEachCallback.idl
index d6bbb8dfc96e0e4a3c1753d2b6bf38e427baea15..0814b110fea7852fca1f9b65b20c6900e6aaca62 100644
--- a/Source/modules/serviceworkers/HeaderMapForEachCallback.idl
+++ b/Source/modules/serviceworkers/HeadersForEachCallback.idl
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
falken 2014/06/27 07:21:21 Can you add also put a comment here that this IDL
horo 2014/06/27 07:50:37 Done.
-callback interface HeaderMapForEachCallback {
- [CallWith=ThisValue] boolean handleItem(DOMString value, DOMString key, HeaderMap map);
- boolean handleItem(DOMString value, DOMString key, HeaderMap map);
+callback interface HeadersForEachCallback {
+ [CallWith=ThisValue] boolean handleItem(DOMString value, DOMString key, Headers map);
+ boolean handleItem(DOMString value, DOMString key, Headers map);
};

Powered by Google App Engine
This is Rietveld 408576698