| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_CLEANUP_TOOL_CLEANUP_TOOL_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_TOOL_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_TOOL_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_TOOL_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 | 10 |
| 11 // The UI for chrome://cleanup, which will allow Windows users to see the | 11 // The UI for chrome://cleanup, which will allow Windows users to see the |
| 12 // status of the last Chrome Cleanup Tool scan and to manually launch the | 12 // status of the last Chrome Cleanup Tool scan and to manually launch the |
| 13 // cleanup process. | 13 // cleanup process. |
| 14 class CleanupToolUI : public content::WebUIController { | 14 class CleanupToolUI : public content::WebUIController { |
| 15 public: | 15 public: |
| 16 explicit CleanupToolUI(content::WebUI* web_ui); | 16 explicit CleanupToolUI(content::WebUI* web_ui); |
| 17 ~CleanupToolUI() override; |
| 17 | 18 |
| 18 private: | 19 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(CleanupToolUI); | 20 DISALLOW_COPY_AND_ASSIGN(CleanupToolUI); |
| 20 }; | 21 }; |
| 21 | 22 |
| 22 #endif // CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_TOOL_UI_H_ | 23 #endif // CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_TOOL_UI_H_ |
| OLD | NEW |