| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |