| 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_UPDATE_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" |
| 13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 14 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 15 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
| 16 #include "chrome/browser/chromeos/login/screens/error_screen.h" | 17 #include "chrome/browser/chromeos/login/screens/error_screen.h" |
| 17 #include "chrome/browser/chromeos/login/screens/update_model.h" | 18 #include "chrome/browser/chromeos/login/screens/update_model.h" |
| 18 #include "chromeos/dbus/update_engine_client.h" | 19 #include "chromeos/dbus/update_engine_client.h" |
| 19 #include "chromeos/network/portal_detector/network_portal_detector.h" | 20 #include "chromeos/network/portal_detector/network_portal_detector.h" |
| 20 #include "components/pairing/host_pairing_controller.h" | 21 #include "components/pairing/host_pairing_controller.h" |
| 21 | 22 |
| 22 namespace chromeos { | 23 namespace chromeos { |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 ErrorScreen::ConnectRequestCallbackSubscription connect_request_subscription_; | 187 ErrorScreen::ConnectRequestCallbackSubscription connect_request_subscription_; |
| 187 | 188 |
| 188 base::WeakPtrFactory<UpdateScreen> weak_factory_; | 189 base::WeakPtrFactory<UpdateScreen> weak_factory_; |
| 189 | 190 |
| 190 DISALLOW_COPY_AND_ASSIGN(UpdateScreen); | 191 DISALLOW_COPY_AND_ASSIGN(UpdateScreen); |
| 191 }; | 192 }; |
| 192 | 193 |
| 193 } // namespace chromeos | 194 } // namespace chromeos |
| 194 | 195 |
| 195 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ | 196 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ |
| OLD | NEW |