Chromium Code Reviews| 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_ |