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

Unified Diff: chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc b/chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..aa25f873a897c182d1bcba3a316fb0068d05269f
--- /dev/null
+++ b/chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc
@@ -0,0 +1,35 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/webui/options/chromeos/storage_manager_handler.h"
+
+#include "chrome/grit/generated_resources.h"
+
+namespace chromeos {
+namespace options {
+
+StorageManagerHandler::StorageManagerHandler() {
+}
+
+StorageManagerHandler::~StorageManagerHandler() {
+}
+
+void StorageManagerHandler::GetLocalizedValues(
+ base::DictionaryValue* localized_strings) {
+ DCHECK(localized_strings);
+
+ RegisterTitle(localized_strings, "storageManagerPage",
+ IDS_OPTIONS_SETTINGS_STORAGE_MANAGER_TAB_TITLE);
+}
+
+void StorageManagerHandler::InitializePage() {
+ DCHECK(web_ui());
+}
+
+void StorageManagerHandler::RegisterMessages() {
+ DCHECK(web_ui());
+}
+
+} // namespace options
+} // namespace chromeos
« no previous file with comments | « chrome/browser/ui/webui/options/chromeos/storage_manager_handler.h ('k') | chrome/browser/ui/webui/options/options_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698