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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/storage_manager_handler.h

Issue 2009543002: Add storage manager overlay on Settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 7 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 2016 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_OPTIONS_CHROMEOS_STORAGE_MANAGER_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_STORAGE_MANAGER_HANDLER_H_
7
8 #include "base/macros.h"
9 #include "chrome/browser/ui/webui/options/options_ui.h"
10
11 namespace chromeos {
12 namespace options {
13
14 // Storage manager overlay page UI handler.
15 class StorageManagerHandler : public ::options::OptionsPageUIHandler {
16 public:
17 StorageManagerHandler();
18 ~StorageManagerHandler() override;
19
20 // OptionsPageUIHandler implementation.
21 void GetLocalizedValues(base::DictionaryValue* localized_strings) override;
22 void InitializePage() override;
23
24 // WebUIMessageHandler implementation.
25 void RegisterMessages() override;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(StorageManagerHandler);
29 };
30
31 } // namespace options
32 } // namespace chromeos
33
34 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_STORAGE_MANAGER_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698