Index: chrome/browser/chromeos/login/screens/update_screen.h |
diff --git a/chrome/browser/chromeos/login/screens/update_screen.h b/chrome/browser/chromeos/login/screens/update_screen.h |
index 44de547ecac9899bc26d72d3f3141ca6b06e96bd..cdc1d7adbde8705e6047a1ec97e45840e8f0ccfb 100644 |
--- a/chrome/browser/chromeos/login/screens/update_screen.h |
+++ b/chrome/browser/chromeos/login/screens/update_screen.h |
@@ -77,7 +77,7 @@ class UpdateScreen : public UpdateModel, |
// Skip update UI, usually used only in debug builds/tests. |
void CancelUpdate(); |
- base::OneShotTimer<UpdateScreen>& GetErrorMessageTimerForTesting(); |
+ base::OneShotTimer& GetErrorMessageTimerForTesting(); |
private: |
FRIEND_TEST_ALL_PREFIXES(UpdateScreenTest, TestBasic); |
@@ -126,7 +126,7 @@ class UpdateScreen : public UpdateModel, |
// Timer for the interval to wait for the reboot. |
// If reboot didn't happen - ask user to reboot manually. |
- base::OneShotTimer<UpdateScreen> reboot_timer_; |
+ base::OneShotTimer reboot_timer_; |
// Returns a static InstanceSet. |
typedef std::set<UpdateScreen*> InstanceSet; |
@@ -181,7 +181,7 @@ class UpdateScreen : public UpdateModel, |
// Timer for the captive portal detector to show portal login page. |
// If redirect did not happen during this delay, error message is shown |
// instead. |
- base::OneShotTimer<UpdateScreen> error_message_timer_; |
+ base::OneShotTimer error_message_timer_; |
ErrorScreen::ConnectRequestCallbackSubscription connect_request_subscription_; |