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

Unified Diff: chrome/browser/ui/webui/options/content_settings_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/content_settings_handler.cc
diff --git a/chrome/browser/ui/webui/options/content_settings_handler.cc b/chrome/browser/ui/webui/options/content_settings_handler.cc
index f312e67618b1fe8e3722ce67dbbeca7c4113004f..59f2502963db7ff6ff83b54662aceb041b799c08 100644
--- a/chrome/browser/ui/webui/options/content_settings_handler.cc
+++ b/chrome/browser/ui/webui/options/content_settings_handler.cc
@@ -383,7 +383,8 @@ bool ContentSettingsHandler::GetDefaultSettingManagedFromModel(
void ContentSettingsHandler::UpdateHandlersEnabledRadios() {
#if defined(ENABLE_REGISTER_PROTOCOL_HANDLER)
DCHECK(web_ui_);
- FundamentalValue handlers_enabled(GetProtocolHandlerRegistry()->enabled());
+ base::FundamentalValue handlers_enabled(
+ GetProtocolHandlerRegistry()->enabled());
web_ui_->CallJavascriptFunction("ContentSettings.updateHandlersEnabledRadios",
handlers_enabled);

Powered by Google App Engine
This is Rietveld 408576698