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

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

Issue 1610023003: Revert of Allow std::unordered_*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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>
8 #include <string> 7 #include <string>
9 #include <vector> 8 #include <vector>
10 9
11 #include "chrome/common/extensions/api/log_private.h" 10 #include "chrome/common/extensions/api/log_private.h"
12 11
13 namespace extensions { 12 namespace extensions {
14 13
15 namespace { 14 namespace {
16 15
17 template <typename T> 16 template <typename T>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 49
51 bool FilterHandler::IsValidLevel(const std::string& level) const { 50 bool FilterHandler::IsValidLevel(const std::string& level) const {
52 return IsValidField(filter_.level, level); 51 return IsValidField(filter_.level, level);
53 } 52 }
54 53
55 bool FilterHandler::IsValidProcess(const std::string& process) const { 54 bool FilterHandler::IsValidProcess(const std::string& process) const {
56 return IsValidField(filter_.process, process); 55 return IsValidField(filter_.process, process);
57 } 56 }
58 57
59 } // namespace extensions 58 } // 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