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

Side by Side Diff: chrome/browser/infobars/infobar_tab_helper.cc

Issue 10879037: Rename InfoBarTabService -> InfoBarService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix include guard Created 8 years, 4 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
« no previous file with comments | « chrome/browser/infobars/infobar_tab_helper.h ('k') | chrome/browser/plugin_infobar_delegates.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/infobars/infobar_tab_helper.h" 5 #include "chrome/browser/infobars/infobar_tab_helper.h"
6 6
7 #include "chrome/browser/api/infobars/infobar_delegate.h" 7 #include "chrome/browser/api/infobars/infobar_delegate.h"
8 #include "chrome/browser/infobars/infobar.h" 8 #include "chrome/browser/infobars/infobar.h"
9 #include "chrome/browser/infobars/insecure_content_infobar_delegate.h" 9 #include "chrome/browser/infobars/insecure_content_infobar_delegate.h"
10 #include "chrome/browser/ui/tab_contents/tab_contents.h" 10 #include "chrome/browser/ui/tab_contents/tab_contents.h"
11 #include "chrome/common/chrome_notification_types.h" 11 #include "chrome/common/chrome_notification_types.h"
12 #include "chrome/common/render_messages.h" 12 #include "chrome/common/render_messages.h"
13 #include "content/public/browser/navigation_controller.h" 13 #include "content/public/browser/navigation_controller.h"
14 #include "content/public/browser/notification_service.h" 14 #include "content/public/browser/notification_service.h"
15 #include "content/public/browser/web_contents.h" 15 #include "content/public/browser/web_contents.h"
16 16
17 using content::NavigationController; 17 using content::NavigationController;
18 using content::WebContents; 18 using content::WebContents;
19 19
20 InfoBarTabService* InfoBarTabService::ForTab(TabContents* tab) { 20 InfoBarService* InfoBarService::ForTab(TabContents* tab) {
21 return tab->infobar_tab_helper(); 21 return tab->infobar_tab_helper();
22 } 22 }
23 23
24 InfoBarTabHelper::InfoBarTabHelper(WebContents* web_contents) 24 InfoBarTabHelper::InfoBarTabHelper(WebContents* web_contents)
25 : content::WebContentsObserver(web_contents), 25 : content::WebContentsObserver(web_contents),
26 infobars_enabled_(true) { 26 infobars_enabled_(true) {
27 DCHECK(web_contents); 27 DCHECK(web_contents);
28 } 28 }
29 29
30 InfoBarTabHelper::~InfoBarTabHelper() { 30 InfoBarTabHelper::~InfoBarTabHelper() {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 if (delegate->ShouldExpire(committed_details)) 207 if (delegate->ShouldExpire(committed_details))
208 RemoveInfoBar(delegate); 208 RemoveInfoBar(delegate);
209 } 209 }
210 210
211 break; 211 break;
212 } 212 }
213 default: 213 default:
214 NOTREACHED(); 214 NOTREACHED();
215 } 215 }
216 } 216 }
OLDNEW
« no previous file with comments | « chrome/browser/infobars/infobar_tab_helper.h ('k') | chrome/browser/plugin_infobar_delegates.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698