| Index: chrome/browser/ui/webui/options/language_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/language_options_handler.cc b/chrome/browser/ui/webui/options/language_options_handler.cc
|
| index 5e136f0baf199732f6138d9cf1e41586fed8c095..f219f9d4f35d1deabb907b2a01be6f2cde9c9f24 100644
|
| --- a/chrome/browser/ui/webui/options/language_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/language_options_handler.cc
|
| @@ -20,11 +20,13 @@
|
| #include "chrome/browser/ui/browser_list.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| -#include "content/browser/user_metrics.h"
|
| +#include "content/public/browser/user_metrics.h"
|
| #include "grit/chromium_strings.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| +using content::UserMetricsAction;
|
| +
|
| LanguageOptionsHandler::LanguageOptionsHandler() {
|
| }
|
|
|
| @@ -111,6 +113,6 @@ void LanguageOptionsHandler::SetApplicationLocale(
|
| }
|
|
|
| void LanguageOptionsHandler::RestartCallback(const ListValue* args) {
|
| - UserMetrics::RecordAction(UserMetricsAction("LanguageOptions_Restart"));
|
| + content::RecordAction(UserMetricsAction("LanguageOptions_Restart"));
|
| BrowserList::AttemptRestart();
|
| }
|
|
|