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..78c36df3298daba5c27c8dee5c151cf4d41c1879 |
--- /dev/null |
+++ b/chrome/browser/chromeos/oobe/oobe.h |
@@ -0,0 +1,31 @@ |
+// 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 Profile; |
+ |
+class Oobe : public gen::OobeViewModel { |
+ public: |
+ explicit Oobe(Profile* profile); |
Nikita (slow)
2015/02/24 15:32:41
Why do you need profile?
Ivan Podogov
2015/02/24 16:33:20
Leftover from some old test. Removed.
|
+ ~Oobe() override; |
+ |
+ // Overridden from wug::ViewModel: |
+ void Initialize() override; |
+ |
+ static void Register(); |
Nikita (slow)
2015/02/24 15:32:41
nit: Static declaration goes first.
Ivan Podogov
2015/02/24 16:33:20
Done.
|
+ |
+ private: |
+ Profile* profile_; |
+ |
+ void OnButtonClicked() override; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(Oobe); |
+}; |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_OOBE_OOBE_H_ |