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

Unified Diff: chrome/browser/prefs/browser_prefs.cc

Issue 2280513002: MD History: promote menu button to show clear browsing data in narrow mode (Closed)
Patch Set: merge Created 4 years, 3 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/prefs/browser_prefs.cc
diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
index a409a3853765fb7043f9b6e3730332ec0ce1abf5..870bcc9dedfc6f4b9bff36933c92089cb2d650b1 100644
--- a/chrome/browser/prefs/browser_prefs.cc
+++ b/chrome/browser/prefs/browser_prefs.cc
@@ -241,6 +241,10 @@
#include "chrome/browser/ui/ash/chrome_launcher_prefs.h"
#endif
+#if !defined(OS_ANDROID) && !defined(OS_IOS)
+#include "chrome/browser/ui/webui/md_history_ui.cc"
Dan Beam 2016/09/21 15:51:02 dang
+#endif
+
namespace {
#if defined(OS_WIN)
@@ -620,6 +624,10 @@ void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
ash::launcher::RegisterChromeLauncherUserPrefs(registry);
#endif
+#if !defined(OS_ANDROID) && !defined(OS_IOS)
+ MdHistoryUI::RegisterProfilePrefs(registry);
+#endif
+
// Preferences registered only for migration (clearing or moving to a new key)
// go here.

Powered by Google App Engine
This is Rietveld 408576698