| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_UPDATE_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/ref_counted.h" | |
| 10 #include "base/timer.h" | 9 #include "base/timer.h" |
| 11 #include "chrome/browser/chromeos/cros/update_library.h" | 10 #include "chrome/browser/chromeos/cros/update_library.h" |
| 12 #include "chrome/browser/chromeos/login/update_view.h" | 11 #include "chrome/browser/chromeos/login/update_view.h" |
| 13 #include "chrome/browser/chromeos/login/view_screen.h" | 12 #include "chrome/browser/chromeos/login/view_screen.h" |
| 14 | 13 |
| 15 namespace chromeos { | 14 namespace chromeos { |
| 16 | 15 |
| 17 class UpdateController { | 16 class UpdateController { |
| 18 public: | 17 public: |
| 19 // Starts update. | 18 // Starts update. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 58 |
| 60 // True if in the process of checking for update. | 59 // True if in the process of checking for update. |
| 61 bool checking_for_update_; | 60 bool checking_for_update_; |
| 62 | 61 |
| 63 DISALLOW_COPY_AND_ASSIGN(UpdateScreen); | 62 DISALLOW_COPY_AND_ASSIGN(UpdateScreen); |
| 64 }; | 63 }; |
| 65 | 64 |
| 66 } // namespace chromeos | 65 } // namespace chromeos |
| 67 | 66 |
| 68 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_H_ | 67 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UPDATE_SCREEN_H_ |
| OLD | NEW |