| Index: chrome/browser/profiles/profile_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
|
| index 1a4f6f9c0fd4a16424cfe8ced5b3e2f19c339b81..fff1e9bce2d25a006c4396641cca3b123c5144e7 100644
|
| --- a/chrome/browser/profiles/profile_manager.cc
|
| +++ b/chrome/browser/profiles/profile_manager.cc
|
| @@ -31,9 +31,9 @@
|
| #include "chrome/common/logging_chrome.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chrome/common/url_constants.h"
|
| -#include "content/browser/user_metrics.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
| +#include "content/public/browser/user_metrics.h"
|
| #include "grit/generated_resources.h"
|
| #include "net/http/http_transaction_factory.h"
|
| #include "net/url_request/url_request_context.h"
|
| @@ -47,6 +47,7 @@
|
| #endif
|
|
|
| using content::BrowserThread;
|
| +using content::UserMetricsAction;
|
|
|
| namespace {
|
|
|
| @@ -395,7 +396,7 @@ void ProfileManager::NewWindowWithProfile(
|
| if (browser) {
|
| browser->window()->Activate();
|
| } else {
|
| - UserMetrics::RecordAction(UserMetricsAction("NewWindow"));
|
| + content::RecordAction(UserMetricsAction("NewWindow"));
|
| CommandLine command_line(CommandLine::NO_PROGRAM);
|
| int return_code;
|
| BrowserInit browser_init;
|
|
|