| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "content/public/browser/web_ui_controller.h" | 9 #include "content/public/browser/web_ui_controller.h" |
| 10 #include "ui/base/layout.h" | 10 #include "ui/base/layout.h" |
| 11 | 11 |
| 12 class Profile; | 12 class Profile; |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class ListValue; |
| 15 class RefCountedMemory; | 16 class RefCountedMemory; |
| 16 } | 17 } |
| 17 | 18 |
| 19 namespace content { |
| 20 class WebUIDataSource; |
| 21 } |
| 22 |
| 23 namespace user_prefs { |
| 24 class PrefRegistrySyncable; |
| 25 } |
| 26 |
| 18 class MdHistoryUI : public content::WebUIController { | 27 class MdHistoryUI : public content::WebUIController { |
| 19 public: | 28 public: |
| 20 explicit MdHistoryUI(content::WebUI* web_ui); | 29 explicit MdHistoryUI(content::WebUI* web_ui); |
| 21 ~MdHistoryUI() override; | 30 ~MdHistoryUI() override; |
| 22 | 31 |
| 23 static bool IsEnabled(Profile* profile); | 32 static bool IsEnabled(Profile* profile); |
| 24 // Reset the current list of features and explicitly disable MD History. | 33 // Reset the current list of features and explicitly disable MD History. |
| 25 static void DisableForTesting(); | 34 static void DisableForTesting(); |
| 26 | 35 |
| 36 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 37 |
| 27 static base::RefCountedMemory* GetFaviconResourceBytes( | 38 static base::RefCountedMemory* GetFaviconResourceBytes( |
| 28 ui::ScaleFactor scale_factor); | 39 ui::ScaleFactor scale_factor); |
| 29 | 40 |
| 30 private: | 41 private: |
| 42 // Handler for the "menuPromoShown" message from the page. No arguments. |
| 43 void HandleMenuPromoShown(const base::ListValue* args); |
| 44 |
| 45 content::WebUIDataSource* data_source_; // weak |
| 46 |
| 31 DISALLOW_COPY_AND_ASSIGN(MdHistoryUI); | 47 DISALLOW_COPY_AND_ASSIGN(MdHistoryUI); |
| 32 }; | 48 }; |
| 33 | 49 |
| 34 #endif // CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 50 #endif // CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
| OLD | NEW |