| Index: chrome/browser/captive_portal/captive_portal_tab_helper.cc
|
| diff --git a/chrome/browser/captive_portal/captive_portal_tab_helper.cc b/chrome/browser/captive_portal/captive_portal_tab_helper.cc
|
| index 2d2c1e18dd83479c83cfe149a92843ce37d5d3a0..bd4895ba17342cc89d57e098a669ab17a8d0c978 100644
|
| --- a/chrome/browser/captive_portal/captive_portal_tab_helper.cc
|
| +++ b/chrome/browser/captive_portal/captive_portal_tab_helper.cc
|
| @@ -100,7 +100,7 @@ void CaptivePortalTabHelper::DidStartProvisionalLoadForFrame(
|
| void CaptivePortalTabHelper::DidCommitProvisionalLoadForFrame(
|
| content::RenderFrameHost* render_frame_host,
|
| const GURL& url,
|
| - content::PageTransition transition_type) {
|
| + ui::PageTransition transition_type) {
|
| DCHECK(CalledOnValidThread());
|
|
|
| // Ignore subframes.
|
| @@ -260,7 +260,7 @@ void CaptivePortalTabHelper::OpenLoginTab() {
|
| content::WebContents* web_contents = chrome::AddSelectedTabWithURL(
|
| browser,
|
| CaptivePortalServiceFactory::GetForProfile(profile_)->test_url(),
|
| - content::PAGE_TRANSITION_TYPED);
|
| + ui::PAGE_TRANSITION_TYPED);
|
| CaptivePortalTabHelper* captive_portal_tab_helper =
|
| CaptivePortalTabHelper::FromWebContents(web_contents);
|
| captive_portal_tab_helper->SetIsLoginTab();
|
|
|