| Index: chrome/browser/profiles/profile_manager.cc
|
| diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
|
| index 004f323d52e000cc6b48b5e5c77ce478fcce374c..ed81da443053bd97b6001c6c54f3ff9d3ee87a6d 100644
|
| --- a/chrome/browser/profiles/profile_manager.cc
|
| +++ b/chrome/browser/profiles/profile_manager.cc
|
| @@ -32,9 +32,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"
|
| @@ -48,6 +48,7 @@
|
| #endif
|
|
|
| using content::BrowserThread;
|
| +using content::UserMetricsAction;
|
|
|
| namespace {
|
|
|
| @@ -409,7 +410,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;
|
|
|