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

Side by Side Diff: chrome/browser/ui/webui/cleanup_tool/cleanup_tool_ui.h

Issue 2784653004: Cleanup Tool WebUI: Add HTML content and styling with dummy JS (Closed)
Patch Set: Move build include to is_win section Created 3 years, 8 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 unified diff | Download patch
OLDNEW
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698