| 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/infobars/infobar_tab_helper.h" | 5 #include "chrome/browser/api/infobars/infobar_tab_helper.h" |
| 6 | 6 |
| 7 #include "chrome/browser/api/infobars/infobar_delegate.h" |
| 7 #include "chrome/browser/infobars/infobar.h" | 8 #include "chrome/browser/infobars/infobar.h" |
| 8 #include "chrome/browser/infobars/infobar_delegate.h" | 9 #include "chrome/browser/infobars/insecure_content_infobar_delegate.h" |
| 9 #include "chrome/browser/tab_contents/insecure_content_infobar_delegate.h" | |
| 10 #include "chrome/common/chrome_notification_types.h" | 10 #include "chrome/common/chrome_notification_types.h" |
| 11 #include "chrome/common/render_messages.h" | 11 #include "chrome/common/render_messages.h" |
| 12 #include "content/public/browser/navigation_controller.h" | 12 #include "content/public/browser/navigation_controller.h" |
| 13 #include "content/public/browser/notification_service.h" | 13 #include "content/public/browser/notification_service.h" |
| 14 #include "content/public/browser/web_contents.h" | 14 #include "content/public/browser/web_contents.h" |
| 15 | 15 |
| 16 using content::NavigationController; | 16 using content::NavigationController; |
| 17 using content::WebContents; | 17 using content::WebContents; |
| 18 | 18 |
| 19 InfoBarTabHelper::InfoBarTabHelper(WebContents* web_contents) | 19 InfoBarTabHelper::InfoBarTabHelper(WebContents* web_contents) |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 if (delegate->ShouldExpire(committed_details)) | 194 if (delegate->ShouldExpire(committed_details)) |
| 195 RemoveInfoBar(delegate); | 195 RemoveInfoBar(delegate); |
| 196 } | 196 } |
| 197 | 197 |
| 198 break; | 198 break; |
| 199 } | 199 } |
| 200 default: | 200 default: |
| 201 NOTREACHED(); | 201 NOTREACHED(); |
| 202 } | 202 } |
| 203 } | 203 } |
| OLD | NEW |