Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: chrome/browser/captive_portal/captive_portal_tab_reloader.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_CAPTIVE_PORTAL_CAPTIVE_PORTAL_TAB_RELOADER_H_ 5 #ifndef CHROME_BROWSER_CAPTIVE_PORTAL_CAPTIVE_PORTAL_TAB_RELOADER_H_
6 #define CHROME_BROWSER_CAPTIVE_PORTAL_CAPTIVE_PORTAL_TAB_RELOADER_H_ 6 #define CHROME_BROWSER_CAPTIVE_PORTAL_CAPTIVE_PORTAL_TAB_RELOADER_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
10 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/macros.h"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 #include "base/timer/timer.h" 13 #include "base/timer/timer.h"
14 #include "chrome/browser/captive_portal/captive_portal_service.h" 14 #include "chrome/browser/captive_portal/captive_portal_service.h"
15 15
16 class Profile; 16 class Profile;
17 17
18 namespace content { 18 namespace content {
19 class WebContents; 19 class WebContents;
20 } 20 }
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 base::TimeDelta slow_ssl_load_time_; 177 base::TimeDelta slow_ssl_load_time_;
178 178
179 const OpenLoginTabCallback open_login_tab_callback_; 179 const OpenLoginTabCallback open_login_tab_callback_;
180 180
181 base::WeakPtrFactory<CaptivePortalTabReloader> weak_factory_; 181 base::WeakPtrFactory<CaptivePortalTabReloader> weak_factory_;
182 182
183 DISALLOW_COPY_AND_ASSIGN(CaptivePortalTabReloader); 183 DISALLOW_COPY_AND_ASSIGN(CaptivePortalTabReloader);
184 }; 184 };
185 185
186 #endif // CHROME_BROWSER_CAPTIVE_PORTAL_CAPTIVE_PORTAL_TAB_RELOADER_H_ 186 #endif // CHROME_BROWSER_CAPTIVE_PORTAL_CAPTIVE_PORTAL_TAB_RELOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698