| Index: chrome/browser/profiles/profile_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
|
| index 563b333103b475afb724240a45f8acb7265ca267..c950fff0a58d0977303b0ccda95a04c745201f1e 100644
|
| --- a/chrome/browser/profiles/profile_manager.cc
|
| +++ b/chrome/browser/profiles/profile_manager.cc
|
| @@ -18,6 +18,7 @@
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| #include "base/metrics/histogram_macros.h"
|
| +#include "base/metrics/user_metrics.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -85,7 +86,6 @@
|
| #include "components/sync/base/stop_source.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
| -#include "content/public/browser/user_metrics.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "extensions/features/features.h"
|
| #include "net/http/http_transaction_factory.h"
|
| @@ -556,7 +556,7 @@ void ProfileManager::CreateProfileAsync(
|
| }
|
|
|
| if (!supervised_user_id.empty()) {
|
| - content::RecordAction(
|
| + base::RecordAction(
|
| UserMetricsAction("ManagedMode_LocallyManagedUserCreated"));
|
| }
|
|
|
|
|