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

Side by Side Diff: Source/platform/CommaDelimitedParser.h

Issue 961773002: Add a comma delimited syntax parser and use it for Accept-CH (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed useless constructor Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « Source/core/fetch/Resource.cpp ('k') | Source/platform/CommaDelimitedParser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CommaDelimitedParser_h
6 #define CommaDelimitedParser_h
7
8 #include "platform/PlatformExport.h"
9 #include "wtf/HashMap.h"
10 #include "wtf/text/StringHash.h"
11
12 namespace blink {
13
14 class CommaDelimitedParser {
Mike West 2015/02/27 08:53:41 I'm not sure this is a good name. It does parse a
15 public:
16 PLATFORM_EXPORT CommaDelimitedParser(String);
17
18 PLATFORM_EXPORT bool contains(String);
19
20 private:
21 HashMap<String, bool, CaseFoldingHash> m_map;
Mike West 2015/02/27 08:53:41 I'd suggest a HashSet rather than a map containing
22 };
23
24 } // namespace blink
25 #endif
26
OLDNEW
« no previous file with comments | « Source/core/fetch/Resource.cpp ('k') | Source/platform/CommaDelimitedParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698