OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_SCREEN_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_SCREEN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "chrome/browser/chromeos/login/screens/base_screen.h" | 11 #include "chrome/browser/chromeos/login/screens/base_screen.h" |
12 #include "chrome/browser/chromeos/login/screens/eula_model.h" | 12 #include "chrome/browser/chromeos/login/screens/eula_model.h" |
13 #include "chromeos/tpm_password_fetcher.h" | 13 #include "chromeos/tpm/tpm_password_fetcher.h" |
14 #include "components/login/screens/screen_context.h" | 14 #include "components/login/screens/screen_context.h" |
15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
16 | 16 |
17 namespace chromeos { | 17 namespace chromeos { |
18 | 18 |
19 // Representation independent class that controls OOBE screen showing EULA | 19 // Representation independent class that controls OOBE screen showing EULA |
20 // to users. | 20 // to users. |
21 class EulaScreen : public EulaModel, public TpmPasswordFetcherDelegate { | 21 class EulaScreen : public EulaModel, public TpmPasswordFetcherDelegate { |
22 public: | 22 public: |
23 class Delegate { | 23 class Delegate { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 EulaView* view_; | 65 EulaView* view_; |
66 | 66 |
67 TpmPasswordFetcher password_fetcher_; | 67 TpmPasswordFetcher password_fetcher_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(EulaScreen); | 69 DISALLOW_COPY_AND_ASSIGN(EulaScreen); |
70 }; | 70 }; |
71 | 71 |
72 } // namespace chromeos | 72 } // namespace chromeos |
73 | 73 |
74 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_SCREEN_H_ | 74 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_SCREEN_H_ |
OLD | NEW |