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

Side by Side Diff: chrome/browser/ui/webui/cleanup_tool/cleanup_action_handler.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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_ACTION_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_ACTION_HANDLER_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "content/public/browser/web_ui_message_handler.h"
11
12 // The handler for Javascript messages related to the "Chrome Cleanup" view.
13 class CleanupActionHandler : public content::WebUIMessageHandler {
14 public:
15 CleanupActionHandler();
16 ~CleanupActionHandler() override;
17
18 // WebUIMessageHandler implementation.
19 void RegisterMessages() override;
20
21 private:
22 void HandleRequestLastScanResult(const base::ListValue* args);
23
24 DISALLOW_COPY_AND_ASSIGN(CleanupActionHandler);
25 };
26
27 #endif // CHROME_BROWSER_UI_WEBUI_CLEANUP_TOOL_CLEANUP_ACTION_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/browser/ui/webui/cleanup_tool/cleanup_action_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698