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

Side by Side Diff: chrome/browser/ui/passwords/password_bubble_experiment.h

Issue 1133613007: Move password_manager_util and password_bubble_experiment to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@486739_componentise_experiment_utils_to_ios_sources
Patch Set: Created 5 years, 7 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 2014 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_UI_PASSWORDS_PASSWORD_BUBBLE_EXPERIMENT_H_
6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_BUBBLE_EXPERIMENT_H_
7
8 #include "base/macros.h"
9 #include "components/password_manager/core/browser/password_manager_metrics_util .h"
10
11 class PrefService;
12
13 namespace sync_driver {
14 class SyncService;
15 }
16
17 namespace password_bubble_experiment {
18
19 // Should be called when user dismisses the "Save Password?" dialog. It stores
20 // the statistics about interactions with the bubble.
21 void RecordBubbleClosed(
22 PrefService* prefs,
23 password_manager::metrics_util::UIDismissalReason reason);
24
25 // Returns true if the password manager should be referred to as Smart Lock.
26 // This is only true for signed-in users.
27 bool IsSmartLockBrandingEnabled(const sync_driver::SyncService* sync_service);
28
29 } // namespace password_bubble_experiment
30
31 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_BUBBLE_EXPERIMENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698