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

Unified Diff: chrome/browser/ui/webui/chromeos/charger_replacement_ui.h

Issue 107103004: Implement the spring charger replacement UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Point iFrame to production site. Created 7 years 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/chromeos/charger_replacement_ui.h
diff --git a/chrome/browser/ui/webui/chromeos/charger_replacement_ui.h b/chrome/browser/ui/webui/chromeos/charger_replacement_ui.h
new file mode 100644
index 0000000000000000000000000000000000000000..8520942da66bc80d25dd8cce6da1d1835c41d8c4
--- /dev/null
+++ b/chrome/browser/ui/webui/chromeos/charger_replacement_ui.h
@@ -0,0 +1,24 @@
+// Copyright (c) 2013 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.
+
+#ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_CHARGER_REPLACEMENT_UI_H_
+#define CHROME_BROWSER_UI_WEBUI_CHROMEOS_CHARGER_REPLACEMENT_UI_H_
+
+#include "ui/web_dialogs/web_dialog_ui.h"
+
+namespace chromeos {
+
+// A WebUI to host the spring charger replacement web ui.
+class ChargerReplacementUI : public ui::WebDialogUI {
+ public:
+ explicit ChargerReplacementUI(content::WebUI* web_ui);
+ virtual ~ChargerReplacementUI();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ChargerReplacementUI);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_CHARGER_REPLACEMENT_UI_H_

Powered by Google App Engine
This is Rietveld 408576698