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

Unified Diff: chrome/browser/chromeos/oobe/oobe.h

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits. Created 5 years, 10 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
« no previous file with comments | « chrome/browser/chromeos/login/ui/login_display_host_impl.cc ('k') | chrome/browser/chromeos/oobe/oobe.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/oobe/oobe.h
diff --git a/chrome/browser/chromeos/oobe/oobe.h b/chrome/browser/chromeos/oobe/oobe.h
new file mode 100644
index 0000000000000000000000000000000000000000..96f8b17b57bbefc84b01e3363201fce829bc376a
--- /dev/null
+++ b/chrome/browser/chromeos/oobe/oobe.h
@@ -0,0 +1,27 @@
+// Copyright 2015 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_CHROMEOS_OOBE_OOBE_H_
+#define CHROME_BROWSER_CHROMEOS_OOBE_OOBE_H_
+
+#include "base/macros.h"
+#include "ui/oobe/declarations/oobe_view_model.h"
+
+class Oobe : public gen::OobeViewModel {
Nikita (slow) 2015/02/25 11:51:19 nit: Class comment is missing.
+ public:
+ Oobe();
+ ~Oobe() override;
+
+ static void Register();
+
+ // Overridden from wug::ViewModel:
+ void Initialize() override;
+
+ private:
+ void OnButtonClicked() override;
+
+ DISALLOW_COPY_AND_ASSIGN(Oobe);
+};
+
+#endif // CHROME_BROWSER_CHROMEOS_OOBE_OOBE_H_
« no previous file with comments | « chrome/browser/chromeos/login/ui/login_display_host_impl.cc ('k') | chrome/browser/chromeos/oobe/oobe.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698