OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_METRICS_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_METRICS_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_METRICS_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_METRICS_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 static void LogProfileAvatarSelection(size_t icon_index); | 64 static void LogProfileAvatarSelection(size_t icon_index); |
65 static void LogProfileOpenMethod(ProfileOpen metric); | 65 static void LogProfileOpenMethod(ProfileOpen metric); |
66 static void LogProfileAddNewUser(ProfileAdd metric); | 66 static void LogProfileAddNewUser(ProfileAdd metric); |
67 static void LogProfileSwitchUser(ProfileOpen metric); | 67 static void LogProfileSwitchUser(ProfileOpen metric); |
68 static void LogProfileDeleteUser(ProfileNetUserCounts metric); | 68 static void LogProfileDeleteUser(ProfileNetUserCounts metric); |
69 static void LogProfileSyncInfo(ProfileSync metric); | 69 static void LogProfileSyncInfo(ProfileSync metric); |
70 static void LogProfileUpdate(FilePath& profile_path); | 70 static void LogProfileUpdate(FilePath& profile_path); |
71 static void LogProfileSyncSignIn(FilePath& profile_path); | 71 static void LogProfileSyncSignIn(FilePath& profile_path); |
72 static void LogProfileSwitchGaia(ProfileGaia metric); | 72 static void LogProfileSwitchGaia(ProfileGaia metric); |
| 73 static void LogProfileLaunch(FilePath& profile_path); |
| 74 static void LogNumberOfProfiles(bool startup); |
73 }; | 75 }; |
74 | 76 |
75 | 77 |
76 #endif // CHROME_BROWSER_PROFILES_PROFILE_METRICS_H_ | 78 #endif // CHROME_BROWSER_PROFILES_PROFILE_METRICS_H_ |
OLD | NEW |