| 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> | 7 #include <algorithm> |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 #include <vector> | 10 #include <vector> |
| 10 | 11 |
| 11 #include "chrome/common/extensions/api/log_private.h" | 12 #include "chrome/common/extensions/api/log_private.h" |
| 12 | 13 |
| 13 namespace extensions { | 14 namespace extensions { |
| 14 | 15 |
| 15 namespace { | 16 namespace { |
| 16 | 17 |
| 17 template <typename T> | 18 template <typename T> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 51 |
| 51 bool FilterHandler::IsValidLevel(const std::string& level) const { | 52 bool FilterHandler::IsValidLevel(const std::string& level) const { |
| 52 return IsValidField(filter_.level, level); | 53 return IsValidField(filter_.level, level); |
| 53 } | 54 } |
| 54 | 55 |
| 55 bool FilterHandler::IsValidProcess(const std::string& process) const { | 56 bool FilterHandler::IsValidProcess(const std::string& process) const { |
| 56 return IsValidField(filter_.process, process); | 57 return IsValidField(filter_.process, process); |
| 57 } | 58 } |
| 58 | 59 |
| 59 } // namespace extensions | 60 } // namespace extensions |
| OLD | NEW |