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

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

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: Created 5 years, 9 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/platform/CommaDelimitedParser.h ('k') | Source/platform/CommaDelimitedParserTest.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 #include "config.h"
6 #include "platform/CommaDelimitedParser.h"
7
8 namespace blink {
9
10 static bool isWhitespace(UChar chr)
Mike West 2015/02/27 08:53:41 Can you use isASCIIWhitespace instead (in string_u
11 {
12 return (chr == ' ') || (chr == '\t');
13 }
14
15 CommaDelimitedParser::CommaDelimitedParser(String input)
16 {
17 Vector<String> results;
18 input.split(",", results);
19 for (auto& value : results)
20 m_map.add(value.stripWhiteSpace(isWhitespace), true);
21 }
22
23 bool CommaDelimitedParser::contains(String field)
24 {
25 auto i = m_map.find(field);
26 if (i == m_map.end())
27 return false;
28 return i->value;
29 }
30
31 } // namespace blink
32
OLDNEW
« no previous file with comments | « Source/platform/CommaDelimitedParser.h ('k') | Source/platform/CommaDelimitedParserTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698