OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_CHROMEOS_OOBE_OOBE_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_OOBE_OOBE_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "ui/oobe/declarations/oobe_view_model.h" | |
10 | |
11 class Profile; | |
12 | |
13 class Oobe : public gen::OobeViewModel { | |
14 public: | |
15 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.
| |
16 ~Oobe() override; | |
17 | |
18 // Overridden from wug::ViewModel: | |
19 void Initialize() override; | |
20 | |
21 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.
| |
22 | |
23 private: | |
24 Profile* profile_; | |
25 | |
26 void OnButtonClicked() override; | |
27 | |
28 DISALLOW_COPY_AND_ASSIGN(Oobe); | |
29 }; | |
30 | |
31 #endif // CHROME_BROWSER_CHROMEOS_OOBE_OOBE_H_ | |
OLD | NEW |