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

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

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Set Time Dialog Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/chromeos/set_time_ui.h
diff --git a/chrome/browser/ui/webui/chromeos/set_time_ui.h b/chrome/browser/ui/webui/chromeos/set_time_ui.h
new file mode 100644
index 0000000000000000000000000000000000000000..08c8409220ba0b124dd36ec09f98e1ffcde1c24d
--- /dev/null
+++ b/chrome/browser/ui/webui/chromeos/set_time_ui.h
@@ -0,0 +1,26 @@
+// Copyright 2014 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_SET_TIME_UI_H_
+#define CHROME_BROWSER_UI_WEBUI_CHROMEOS_SET_TIME_UI_H_
+
+#include "base/basictypes.h"
+#include "chromeos/settings/timezone_settings.h"
Dan Beam 2014/04/23 17:51:45 ^ do you need this include?
michaelpg 2014/04/24 01:32:23 Not in the header.
+#include "ui/web_dialogs/web_dialog_ui.h"
+
+namespace chromeos {
+
+// The WebUI for chrome://set-time
Dan Beam 2014/04/23 17:51:45 end with .
michaelpg 2014/04/24 01:32:23 Done.
+class SetTimeUI : public ui::WebDialogUI {
+ public:
+ explicit SetTimeUI(content::WebUI* web_ui);
+ virtual ~SetTimeUI();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SetTimeUI);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_SET_TIME_UI_H_

Powered by Google App Engine
This is Rietveld 408576698