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

Side by Side Diff: chrome/browser/ui/tab_contents/tab_contents.cc

Issue 10946011: Switch CaptivePortalTabHelper to use WebContentsUserData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing, rebase Created 8 years, 3 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 | Annotate | Revision Log
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 #include "chrome/browser/ui/tab_contents/tab_contents.h" 5 #include "chrome/browser/ui/tab_contents/tab_contents.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "chrome/browser/autofill/autocomplete_history_manager.h" 9 #include "chrome/browser/autofill/autocomplete_history_manager.h"
10 #include "chrome/browser/autofill/autofill_external_delegate.h" 10 #include "chrome/browser/autofill/autofill_external_delegate.h"
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 SSLTabHelper::CreateForWebContents(contents); 153 SSLTabHelper::CreateForWebContents(contents);
154 synced_tab_delegate_.reset(new TabContentsSyncedTabDelegate(this)); 154 synced_tab_delegate_.reset(new TabContentsSyncedTabDelegate(this));
155 translate_tab_helper_.reset(new TranslateTabHelper(contents)); 155 translate_tab_helper_.reset(new TranslateTabHelper(contents));
156 zoom_controller_.reset(new ZoomController(this)); 156 zoom_controller_.reset(new ZoomController(this));
157 157
158 #if defined(ENABLE_AUTOMATION) 158 #if defined(ENABLE_AUTOMATION)
159 automation_tab_helper_.reset(new AutomationTabHelper(contents)); 159 automation_tab_helper_.reset(new AutomationTabHelper(contents));
160 #endif 160 #endif
161 161
162 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) 162 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
163 captive_portal_tab_helper_.reset( 163 captive_portal::CaptivePortalTabHelper::CreateForWebContents(contents);
164 new captive_portal::CaptivePortalTabHelper(profile(), web_contents()));
165 #endif 164 #endif
166 165
167 #if !defined(OS_ANDROID) 166 #if !defined(OS_ANDROID)
168 if (OmniboxSearchHint::IsEnabled(profile())) 167 if (OmniboxSearchHint::IsEnabled(profile()))
169 OmniboxSearchHint::CreateForWebContents(contents); 168 OmniboxSearchHint::CreateForWebContents(contents);
170 PDFTabHelper::CreateForWebContents(contents); 169 PDFTabHelper::CreateForWebContents(contents);
171 sad_tab_helper_.reset(new SadTabHelper(contents)); 170 sad_tab_helper_.reset(new SadTabHelper(contents));
172 web_intent_picker_controller_.reset(new WebIntentPickerController(this)); 171 web_intent_picker_controller_.reset(new WebIntentPickerController(this));
173 #endif 172 #endif
174 173
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 246
248 //////////////////////////////////////////////////////////////////////////////// 247 ////////////////////////////////////////////////////////////////////////////////
249 // WebContentsObserver overrides 248 // WebContentsObserver overrides
250 249
251 void TabContents::WebContentsDestroyed(WebContents* tab) { 250 void TabContents::WebContentsDestroyed(WebContents* tab) {
252 // Destruction of the WebContents should only be done by us from our 251 // Destruction of the WebContents should only be done by us from our
253 // destructor. Otherwise it's very likely we (or one of the helpers we own) 252 // destructor. Otherwise it's very likely we (or one of the helpers we own)
254 // will attempt to access the WebContents and we'll crash. 253 // will attempt to access the WebContents and we'll crash.
255 DCHECK(in_destructor_); 254 DCHECK(in_destructor_);
256 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698