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 #include "chrome/browser/captive_portal/captive_portal_tab_helper.h" | 5 #include "chrome/browser/captive_portal/captive_portal_tab_helper.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "chrome/browser/captive_portal/captive_portal_login_detector.h" | 8 #include "chrome/browser/captive_portal/captive_portal_login_detector.h" |
| 9 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
9 #include "chrome/browser/captive_portal/captive_portal_tab_reloader.h" | 10 #include "chrome/browser/captive_portal/captive_portal_tab_reloader.h" |
10 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | |
11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_finder.h" | 13 #include "chrome/browser/ui/browser_finder.h" |
14 #include "chrome/browser/ui/browser_tabstrip.h" | 14 #include "chrome/browser/ui/browser_tabstrip.h" |
15 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 15 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
16 #include "chrome/common/chrome_notification_types.h" | 16 #include "chrome/common/chrome_notification_types.h" |
17 #include "content/public/browser/notification_details.h" | 17 #include "content/public/browser/notification_details.h" |
18 #include "content/public/browser/notification_service.h" | 18 #include "content/public/browser/notification_service.h" |
19 #include "content/public/browser/notification_source.h" | 19 #include "content/public/browser/notification_source.h" |
20 #include "content/public/browser/notification_types.h" | 20 #include "content/public/browser/notification_types.h" |
21 #include "content/public/browser/render_process_host.h" | 21 #include "content/public/browser/render_process_host.h" |
22 #include "content/public/browser/render_view_host.h" | 22 #include "content/public/browser/render_view_host.h" |
23 #include "content/public/browser/resource_request_details.h" | 23 #include "content/public/browser/resource_request_details.h" |
24 #include "content/public/browser/web_contents.h" | 24 #include "content/public/browser/web_contents.h" |
25 #include "net/base/net_errors.h" | 25 #include "net/base/net_errors.h" |
26 #include "net/base/ssl_info.h" | 26 #include "net/ssl/ssl_info.h" |
27 | 27 |
28 DEFINE_WEB_CONTENTS_USER_DATA_KEY(captive_portal::CaptivePortalTabHelper); | 28 DEFINE_WEB_CONTENTS_USER_DATA_KEY(captive_portal::CaptivePortalTabHelper); |
29 | 29 |
30 namespace captive_portal { | 30 namespace captive_portal { |
31 | 31 |
32 CaptivePortalTabHelper::CaptivePortalTabHelper( | 32 CaptivePortalTabHelper::CaptivePortalTabHelper( |
33 content::WebContents* web_contents) | 33 content::WebContents* web_contents) |
34 : content::WebContentsObserver(web_contents), | 34 : content::WebContentsObserver(web_contents), |
35 // web_contents is NULL in unit tests. | 35 // web_contents is NULL in unit tests. |
36 profile_(web_contents ? Profile::FromBrowserContext( | 36 profile_(web_contents ? Profile::FromBrowserContext( |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 content::WebContents* web_contents = chrome::AddSelectedTabWithURL( | 265 content::WebContents* web_contents = chrome::AddSelectedTabWithURL( |
266 browser, | 266 browser, |
267 CaptivePortalServiceFactory::GetForProfile(profile_)->test_url(), | 267 CaptivePortalServiceFactory::GetForProfile(profile_)->test_url(), |
268 content::PAGE_TRANSITION_TYPED); | 268 content::PAGE_TRANSITION_TYPED); |
269 captive_portal::CaptivePortalTabHelper* captive_portal_tab_helper = | 269 captive_portal::CaptivePortalTabHelper* captive_portal_tab_helper = |
270 captive_portal::CaptivePortalTabHelper::FromWebContents(web_contents); | 270 captive_portal::CaptivePortalTabHelper::FromWebContents(web_contents); |
271 captive_portal_tab_helper->SetIsLoginTab(); | 271 captive_portal_tab_helper->SetIsLoginTab(); |
272 } | 272 } |
273 | 273 |
274 } // namespace captive_portal | 274 } // namespace captive_portal |
OLD | NEW |