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

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

Issue 10546106: TabContentsWrapper -> TabContents, part 53. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/auto_login_prompter.h" 5 #include "chrome/browser/ui/auto_login_prompter.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/string_split.h" 10 #include "base/string_split.h"
11 #include "chrome/browser/google/google_url_tracker.h" 11 #include "chrome/browser/google/google_url_tracker.h"
12 #include "chrome/browser/infobars/infobar_tab_helper.h" 12 #include "chrome/browser/infobars/infobar_tab_helper.h"
13 #include "chrome/browser/prefs/pref_service.h" 13 #include "chrome/browser/prefs/pref_service.h"
14 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/signin/signin_manager.h" 15 #include "chrome/browser/signin/signin_manager.h"
16 #include "chrome/browser/signin/signin_manager_factory.h" 16 #include "chrome/browser/signin/signin_manager_factory.h"
17 #include "chrome/browser/signin/token_service.h" 17 #include "chrome/browser/signin/token_service.h"
18 #include "chrome/browser/signin/token_service_factory.h" 18 #include "chrome/browser/signin/token_service_factory.h"
19 #include "chrome/browser/sync/profile_sync_service.h" 19 #include "chrome/browser/sync/profile_sync_service.h"
20 #include "chrome/browser/sync/profile_sync_service_factory.h" 20 #include "chrome/browser/sync/profile_sync_service_factory.h"
21 #include "chrome/browser/tab_contents/tab_util.h" 21 #include "chrome/browser/tab_contents/tab_util.h"
22 #include "chrome/browser/ui/auto_login_info_bar_delegate.h" 22 #include "chrome/browser/ui/auto_login_info_bar_delegate.h"
23 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 23 #include "chrome/browser/ui/tab_contents/tab_contents.h"
24 #include "chrome/common/chrome_notification_types.h" 24 #include "chrome/common/chrome_notification_types.h"
25 #include "chrome/common/chrome_switches.h" 25 #include "chrome/common/chrome_switches.h"
26 #include "chrome/common/pref_names.h" 26 #include "chrome/common/pref_names.h"
27 #include "content/public/browser/browser_thread.h" 27 #include "content/public/browser/browser_thread.h"
28 #include "content/public/browser/notification_details.h" 28 #include "content/public/browser/notification_details.h"
29 #include "content/public/browser/notification_observer.h" 29 #include "content/public/browser/notification_observer.h"
30 #include "content/public/browser/notification_registrar.h" 30 #include "content/public/browser/notification_registrar.h"
31 #include "content/public/browser/notification_source.h" 31 #include "content/public/browser/notification_source.h"
32 #include "content/public/browser/notification_types.h" 32 #include "content/public/browser/notification_types.h"
33 #include "content/public/browser/web_contents.h" 33 #include "content/public/browser/web_contents.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 // finish loading. If we don't, the info bar appears and then disappears 146 // finish loading. If we don't, the info bar appears and then disappears
147 // immediately. Create an AutoLoginPrompter instance to listen for the 147 // immediately. Create an AutoLoginPrompter instance to listen for the
148 // relevant notifications; it will delete itself. 148 // relevant notifications; it will delete itself.
149 new AutoLoginPrompter(web_contents, username, args); 149 new AutoLoginPrompter(web_contents, username, args);
150 } 150 }
151 151
152 void AutoLoginPrompter::Observe(int type, 152 void AutoLoginPrompter::Observe(int type,
153 const content::NotificationSource& source, 153 const content::NotificationSource& source,
154 const content::NotificationDetails& details) { 154 const content::NotificationDetails& details) {
155 if (type == content::NOTIFICATION_LOAD_STOP) { 155 if (type == content::NOTIFICATION_LOAD_STOP) {
156 TabContentsWrapper* wrapper = 156 TabContents* tab_contents = TabContents::FromWebContents(web_contents_);
157 TabContentsWrapper::GetCurrentWrapperForContents(web_contents_); 157 // |tab_contents| is NULL for WebContents hosted in WebDialog.
158 // |wrapper| is NULL for WebContents hosted in WebDialog. 158 if (tab_contents) {
159 if (wrapper) { 159 InfoBarTabHelper* infobar_helper = tab_contents->infobar_tab_helper();
160 InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper();
161 infobar_helper->AddInfoBar(new AutoLoginInfoBarDelegate(infobar_helper, 160 infobar_helper->AddInfoBar(new AutoLoginInfoBarDelegate(infobar_helper,
162 username_, 161 username_,
163 args_)); 162 args_));
164 } 163 }
165 } 164 }
166 // Either we couldn't add the infobar, we added the infobar, or the tab 165 // Either we couldn't add the infobar, we added the infobar, or the tab
167 // contents was destroyed before the navigation completed. In any case 166 // contents was destroyed before the navigation completed. In any case
168 // there's no reason to live further. 167 // there's no reason to live further.
169 delete this; 168 delete this;
170 } 169 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/auto_login_info_bar_delegate.cc ('k') | chrome/browser/ui/browser_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698