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

Side by Side Diff: chrome/browser/password_manager/password_manager_util.h

Issue 23140005: Added of new UMA signals in order to be able to discover early if the "save password" feature gets … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review 4 bis (Base files missing error in the previous one) Created 7 years, 3 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698