| 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_delegate.h" | 5 #include "chrome/browser/infobars/infobar_delegate.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/browser/infobars/infobar_tab_helper.h" | 9 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 10 #include "content/public/browser/navigation_controller.h" | 10 #include "content/public/browser/navigation_controller.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 } | 44 } |
| 45 | 45 |
| 46 gfx::Image* InfoBarDelegate::GetIcon() const { | 46 gfx::Image* InfoBarDelegate::GetIcon() const { |
| 47 return NULL; | 47 return NULL; |
| 48 } | 48 } |
| 49 | 49 |
| 50 InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const { | 50 InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const { |
| 51 return WARNING_TYPE; | 51 return WARNING_TYPE; |
| 52 } | 52 } |
| 53 | 53 |
| 54 AutoLoginInfoBarDelegate* InfoBarDelegate::AsAutoLoginInfoBarDelegate() { |
| 55 return NULL; |
| 56 } |
| 57 |
| 54 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() { | 58 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() { |
| 55 return NULL; | 59 return NULL; |
| 56 } | 60 } |
| 57 | 61 |
| 58 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() { | 62 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() { |
| 59 return NULL; | 63 return NULL; |
| 60 } | 64 } |
| 61 | 65 |
| 62 InsecureContentInfoBarDelegate* | 66 InsecureContentInfoBarDelegate* |
| 63 InfoBarDelegate::AsInsecureContentInfoBarDelegate() { | 67 InfoBarDelegate::AsInsecureContentInfoBarDelegate() { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 return (contents_unique_id_ != details.entry->GetUniqueID()) || | 109 return (contents_unique_id_ != details.entry->GetUniqueID()) || |
| 106 (content::PageTransitionStripQualifier( | 110 (content::PageTransitionStripQualifier( |
| 107 details.entry->GetTransitionType()) == | 111 details.entry->GetTransitionType()) == |
| 108 content::PAGE_TRANSITION_RELOAD); | 112 content::PAGE_TRANSITION_RELOAD); |
| 109 } | 113 } |
| 110 | 114 |
| 111 void InfoBarDelegate::RemoveSelf() { | 115 void InfoBarDelegate::RemoveSelf() { |
| 112 if (owner_) | 116 if (owner_) |
| 113 owner_->RemoveInfoBar(this); // Clears |owner_|. | 117 owner_->RemoveInfoBar(this); // Clears |owner_|. |
| 114 } | 118 } |
| OLD | NEW |