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

Side by Side Diff: chrome/browser/extensions/api/log_private/filter_handler.cc

Issue 1502373009: Allow std::unordered_*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, more HashPair -> HashInts Created 4 years, 11 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 | « chrome/browser/devtools/devtools_file_watcher.cc ('k') | chrome/browser/google/google_brand.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/api/log_private/filter_handler.h" 5 #include "chrome/browser/extensions/api/log_private/filter_handler.h"
6 6
7 #include <algorithm>
7 #include <string> 8 #include <string>
8 #include <vector> 9 #include <vector>
9 10
10 #include "chrome/common/extensions/api/log_private.h" 11 #include "chrome/common/extensions/api/log_private.h"
11 12
12 namespace extensions { 13 namespace extensions {
13 14
14 namespace { 15 namespace {
15 16
16 template <typename T> 17 template <typename T>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 50
50 bool FilterHandler::IsValidLevel(const std::string& level) const { 51 bool FilterHandler::IsValidLevel(const std::string& level) const {
51 return IsValidField(filter_.level, level); 52 return IsValidField(filter_.level, level);
52 } 53 }
53 54
54 bool FilterHandler::IsValidProcess(const std::string& process) const { 55 bool FilterHandler::IsValidProcess(const std::string& process) const {
55 return IsValidField(filter_.process, process); 56 return IsValidField(filter_.process, process);
56 } 57 }
57 58
58 } // namespace extensions 59 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_file_watcher.cc ('k') | chrome/browser/google/google_brand.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698