| Index: chrome/browser/ui/webui/options/browser_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| index c8e823d883268a7557103d8667a8880a3d102f2a..d31195ebc19a3063934d89299ac34f952cade837 100644
|
| --- a/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| @@ -329,7 +329,7 @@ void BrowserOptionsHandler::UpdateRestoreOnStartup() {
|
| Profile* profile = web_ui_->GetProfile();
|
| const SessionStartupPref startup_pref =
|
| SessionStartupPref::GetStartupPref(profile->GetPrefs());
|
| - FundamentalValue restore_on_startup(startup_pref.type);
|
| + base::FundamentalValue restore_on_startup(startup_pref.type);
|
| web_ui_->CallJavascriptFunction("BrowserOptions.updateRestoreOnStartup",
|
| restore_on_startup);
|
| }
|
| @@ -526,7 +526,7 @@ void BrowserOptionsHandler::DisableInstant(const ListValue* args) {
|
| }
|
|
|
| void BrowserOptionsHandler::GetInstantFieldTrialStatus(const ListValue* args) {
|
| - FundamentalValue enabled(
|
| + base::FundamentalValue enabled(
|
| InstantFieldTrial::IsExperimentGroup(web_ui_->GetProfile()));
|
| web_ui_->CallJavascriptFunction("BrowserOptions.setInstantFieldTrialStatus",
|
| enabled);
|
|
|