| 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/api/infobars/infobar_delegate.h" | 5 #include "chrome/browser/api/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/api/infobars/infobar_service.h" | 9 #include "chrome/browser/api/infobars/infobar_service.h" |
| 10 #include "content/public/browser/navigation_controller.h" | 10 #include "content/public/browser/navigation_controller.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 } | 40 } |
| 41 | 41 |
| 42 gfx::Image* InfoBarDelegate::GetIcon() const { | 42 gfx::Image* InfoBarDelegate::GetIcon() const { |
| 43 return NULL; | 43 return NULL; |
| 44 } | 44 } |
| 45 | 45 |
| 46 InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const { | 46 InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const { |
| 47 return WARNING_TYPE; | 47 return WARNING_TYPE; |
| 48 } | 48 } |
| 49 | 49 |
| 50 AlternateNavInfoBarDelegate* InfoBarDelegate::AsAlternateNavInfoBarDelegate() { | |
| 51 return NULL; | |
| 52 } | |
| 53 | |
| 54 AutoLoginInfoBarDelegate* InfoBarDelegate::AsAutoLoginInfoBarDelegate() { | 50 AutoLoginInfoBarDelegate* InfoBarDelegate::AsAutoLoginInfoBarDelegate() { |
| 55 return NULL; | 51 return NULL; |
| 56 } | 52 } |
| 57 | 53 |
| 58 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() { | 54 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() { |
| 59 return NULL; | 55 return NULL; |
| 60 } | 56 } |
| 61 | 57 |
| 62 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() { | 58 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() { |
| 63 return NULL; | 59 return NULL; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 return (contents_unique_id_ != details.entry->GetUniqueID()) || | 108 return (contents_unique_id_ != details.entry->GetUniqueID()) || |
| 113 (content::PageTransitionStripQualifier( | 109 (content::PageTransitionStripQualifier( |
| 114 details.entry->GetTransitionType()) == | 110 details.entry->GetTransitionType()) == |
| 115 content::PAGE_TRANSITION_RELOAD); | 111 content::PAGE_TRANSITION_RELOAD); |
| 116 } | 112 } |
| 117 | 113 |
| 118 void InfoBarDelegate::RemoveSelf() { | 114 void InfoBarDelegate::RemoveSelf() { |
| 119 if (owner_) | 115 if (owner_) |
| 120 owner_->RemoveInfoBar(this); // Clears |owner_|. | 116 owner_->RemoveInfoBar(this); // Clears |owner_|. |
| 121 } | 117 } |
| OLD | NEW |