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

Unified Diff: Source/modules/serviceworkers/HeaderMap.h

Issue 383653002: Revert of [ServiceWorker] Make Response class better conformance with the spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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/FetchResponseData.cpp ('k') | Source/modules/serviceworkers/HeaderMap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/HeaderMap.h
diff --git a/Source/modules/serviceworkers/HeaderMap.h b/Source/modules/serviceworkers/HeaderMap.h
new file mode 100644
index 0000000000000000000000000000000000000000..7ef4278607aca64f053cfb1e98d8d75421092755
--- /dev/null
+++ b/Source/modules/serviceworkers/HeaderMap.h
@@ -0,0 +1,47 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef HeaderMap_h
+#define HeaderMap_h
+
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "wtf/Forward.h"
+#include "wtf/HashMap.h"
+#include "wtf/RefCounted.h"
+#include "wtf/text/StringHash.h"
+
+namespace WebCore {
+
+class HeaderMapForEachCallback;
+class ScriptValue;
+
+class HeaderMap FINAL : public ScriptWrappable, public RefCounted<HeaderMap> {
+public:
+ static PassRefPtr<HeaderMap> create();
+ static PassRefPtr<HeaderMap> create(const HashMap<String, String>& headers);
+
+ // HeaderMap.idl implementation.
+ unsigned long size() const;
+ void clear();
+ bool remove(const String& key);
+ String get(const String& key);
+ bool has(const String& key);
+ void set(const String& key, const String& value);
+ void forEach(PassOwnPtr<HeaderMapForEachCallback>, ScriptValue&);
+ void forEach(PassOwnPtr<HeaderMapForEachCallback>);
+
+ const HashMap<String, String>& headerMap() const { return m_headers; }
+
+private:
+ HeaderMap();
+ explicit HeaderMap(const HashMap<String, String>& headers);
+ void forEachInternal(PassOwnPtr<HeaderMapForEachCallback>, ScriptValue* thisArg);
+
+ // FIXME: this doesn't preserve ordering while ES6 Map type requires it.
+ HashMap<String, String> m_headers;
+};
+
+} // namespace WebCore
+
+#endif // HeaderMap_h
« no previous file with comments | « Source/modules/serviceworkers/FetchResponseData.cpp ('k') | Source/modules/serviceworkers/HeaderMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698