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

Unified Diff: chrome/browser/extensions/extension_storage_monitor.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_storage_monitor.cc
diff --git a/chrome/browser/extensions/extension_storage_monitor.cc b/chrome/browser/extensions/extension_storage_monitor.cc
index 81394f5609bafc272711c2f7fa52fbcef88191ab..238ed9c29d5ee20ee2779011ada042ab5c821853 100644
--- a/chrome/browser/extensions/extension_storage_monitor.cc
+++ b/chrome/browser/extensions/extension_storage_monitor.cc
@@ -645,9 +645,8 @@ void ExtensionStorageMonitor::SetStorageNotificationEnabled(
const std::string& extension_id,
bool enable_notifications) {
extension_prefs_->UpdateExtensionPref(
- extension_id,
- kPrefDisableStorageNotifications,
- enable_notifications ? NULL : new base::FundamentalValue(true));
+ extension_id, kPrefDisableStorageNotifications,
+ enable_notifications ? NULL : new base::Value(true));
}
} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/browser/extensions/extension_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698