Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_UTIL_H_ | |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_UTIL_H_ | |
|
Ilya Sherman
2013/08/29 06:42:21
How about password_manager_metrics_util.h? Genera
jdomingos
2013/08/30 21:09:20
Done.
| |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 11 | |
| 12 namespace password_manager_util { | |
| 13 | |
| 14 // Check whether the |url_host| is monitored or not. If yes, we put the | |
|
Ilya Sherman
2013/08/29 06:42:21
nit: "monitored or not" -> "monitored for metrics"
jdomingos
2013/08/30 21:09:20
Done.
| |
| 15 // domain name into |domain_name| | |
|
Ilya Sherman
2013/08/29 06:42:21
nit: End the sentence with a period.
jdomingos
2013/08/30 21:09:20
Done.
| |
| 16 bool IsDomainNameMonitored(const std::string& url_host, | |
| 17 std::string* domain_name); | |
|
Ilya Sherman
2013/08/29 06:42:21
Seems like you might want to annotate this with WA
jdomingos
2013/08/30 21:09:20
Done.
| |
| 18 | |
| 19 } // namespace password_manager_util | |
| 20 | |
| 21 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_UTIL_H_ | |
| OLD | NEW |