| 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" |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 void HideErrorMessage(); | 118 void HideErrorMessage(); |
| 119 void UpdateErrorMessage( | 119 void UpdateErrorMessage( |
| 120 const NetworkState* network, | 120 const NetworkState* network, |
| 121 const NetworkPortalDetector::CaptivePortalStatus status); | 121 const NetworkPortalDetector::CaptivePortalStatus status); |
| 122 | 122 |
| 123 void DelayErrorMessage(); | 123 void DelayErrorMessage(); |
| 124 | 124 |
| 125 // The user requested an attempt to connect to the network should be made. | 125 // The user requested an attempt to connect to the network should be made. |
| 126 void OnConnectRequested(); | 126 void OnConnectRequested(); |
| 127 | 127 |
| 128 // Records the fact that we performed an update check and were notified that |
| 129 // it was not necessary to perform the update. |
| 130 void RecordUpdateCheckWithoutUpdate(); |
| 131 |
| 132 // Returns true if we should check for an update. |
| 133 bool ShouldCheckForUpdate(); |
| 134 |
| 128 // Timer for the interval to wait for the reboot. | 135 // Timer for the interval to wait for the reboot. |
| 129 // If reboot didn't happen - ask user to reboot manually. | 136 // If reboot didn't happen - ask user to reboot manually. |
| 130 base::OneShotTimer reboot_timer_; | 137 base::OneShotTimer reboot_timer_; |
| 131 | 138 |
| 132 // Returns a static InstanceSet. | 139 // Returns a static InstanceSet. |
| 133 // TODO(jdufault): There should only ever be one instance of this class. | 140 // TODO(jdufault): There should only ever be one instance of this class. |
| 134 // Remove support for supporting multiple instances. See crbug.com/672142. | 141 // Remove support for supporting multiple instances. See crbug.com/672142. |
| 135 typedef std::set<UpdateScreen*> InstanceSet; | 142 typedef std::set<UpdateScreen*> InstanceSet; |
| 136 static InstanceSet& GetInstanceSet(); | 143 static InstanceSet& GetInstanceSet(); |
| 137 | 144 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 ErrorScreen::ConnectRequestCallbackSubscription connect_request_subscription_; | 196 ErrorScreen::ConnectRequestCallbackSubscription connect_request_subscription_; |
| 190 | 197 |
| 191 base::WeakPtrFactory<UpdateScreen> weak_factory_; | 198 base::WeakPtrFactory<UpdateScreen> weak_factory_; |
| 192 | 199 |
| 193 DISALLOW_COPY_AND_ASSIGN(UpdateScreen); | 200 DISALLOW_COPY_AND_ASSIGN(UpdateScreen); |
| 194 }; | 201 }; |
| 195 | 202 |
| 196 } // namespace chromeos | 203 } // namespace chromeos |
| 197 | 204 |
| 198 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ | 205 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_UPDATE_SCREEN_H_ |
| OLD | NEW |