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

Unified Diff: chrome/browser/extensions/extension_message_bubble_controller.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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/extensions/extension_message_bubble_controller.cc
diff --git a/chrome/browser/extensions/extension_message_bubble_controller.cc b/chrome/browser/extensions/extension_message_bubble_controller.cc
index 96fda8c5c8f167b03ba33a9a1db35c4f5495ff80..5a609f80ce2ab74e1353c25c4f2a33a73d1b6888 100644
--- a/chrome/browser/extensions/extension_message_bubble_controller.cc
+++ b/chrome/browser/extensions/extension_message_bubble_controller.cc
@@ -77,9 +77,8 @@ void ExtensionMessageBubbleController::Delegate::SetBubbleInfoBeenAcknowledged(
if (pref_name.empty())
return;
extensions::ExtensionPrefs* prefs = extensions::ExtensionPrefs::Get(profile_);
- prefs->UpdateExtensionPref(extension_id,
- pref_name,
- value ? new base::FundamentalValue(value) : NULL);
+ prefs->UpdateExtensionPref(extension_id, pref_name,
+ value ? new base::Value(value) : NULL);
}
std::string
« no previous file with comments | « chrome/browser/extensions/error_console/error_console.cc ('k') | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698