Index: chrome/browser/ssl/ssl_error_handler.h |
diff --git a/chrome/browser/ssl/ssl_error_handler.h b/chrome/browser/ssl/ssl_error_handler.h |
index 30dfb4f4672b051bd8358b04b1c72e510c5e7d48..403b54469a84a0dcfacc76fed16366bd8ba741d4 100644 |
--- a/chrome/browser/ssl/ssl_error_handler.h |
+++ b/chrome/browser/ssl/ssl_error_handler.h |
@@ -86,9 +86,7 @@ class SSLErrorHandler : public content::WebContentsUserData<SSLErrorHandler>, |
// check and fires a one shot timer to wait for a "captive portal detected" |
// result to arrive. |
void StartHandlingError(); |
- const base::OneShotTimer<SSLErrorHandler>& get_timer() const { |
- return timer_; |
- } |
+ const base::OneShotTimer& get_timer() const { return timer_; } |
// These are virtual for tests: |
virtual void CheckForCaptivePortal(); |
@@ -136,7 +134,7 @@ class SSLErrorHandler : public content::WebContentsUserData<SSLErrorHandler>, |
Profile* const profile_; |
content::NotificationRegistrar registrar_; |
- base::OneShotTimer<SSLErrorHandler> timer_; |
+ base::OneShotTimer timer_; |
scoped_ptr<CommonNameMismatchHandler> common_name_mismatch_handler_; |