Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2803)

Unified Diff: chrome/browser/ui/webui/options/browser_options_handler.cc

Issue 7619006: base: Remove using declaration of FundamentalValue as it's no longer necessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698