| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/tab_contents/tab_contents.h" | 5 #include "chrome/browser/tab_contents/tab_contents.h" |
| 6 | 6 |
| 7 #if defined(OS_CHROMEOS) | 7 #if defined(OS_CHROMEOS) |
| 8 // For GdkScreen | 8 // For GdkScreen |
| 9 #include <gdk/gdk.h> | 9 #include <gdk/gdk.h> |
| 10 #endif // defined(OS_CHROMEOS) | 10 #endif // defined(OS_CHROMEOS) |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 NotificationType::TAB_CONTENTS_HIDDEN, | 808 NotificationType::TAB_CONTENTS_HIDDEN, |
| 809 Source<TabContents>(this), | 809 Source<TabContents>(this), |
| 810 NotificationService::NoDetails()); | 810 NotificationService::NoDetails()); |
| 811 } | 811 } |
| 812 | 812 |
| 813 void TabContents::Activate() { | 813 void TabContents::Activate() { |
| 814 if (delegate_) | 814 if (delegate_) |
| 815 delegate_->ActivateContents(this); | 815 delegate_->ActivateContents(this); |
| 816 } | 816 } |
| 817 | 817 |
| 818 void TabContents::Deactivate() { | |
| 819 if (delegate_) | |
| 820 delegate_->DeactivateContents(this); | |
| 821 } | |
| 822 | |
| 823 void TabContents::ShowContents() { | 818 void TabContents::ShowContents() { |
| 824 RenderWidgetHostView* rwhv = GetRenderWidgetHostView(); | 819 RenderWidgetHostView* rwhv = GetRenderWidgetHostView(); |
| 825 if (rwhv) | 820 if (rwhv) |
| 826 rwhv->DidBecomeSelected(); | 821 rwhv->DidBecomeSelected(); |
| 827 } | 822 } |
| 828 | 823 |
| 829 void TabContents::HideContents() { | 824 void TabContents::HideContents() { |
| 830 // TODO(pkasting): http://b/1239839 Right now we purposefully don't call | 825 // TODO(pkasting): http://b/1239839 Right now we purposefully don't call |
| 831 // our superclass HideContents(), because some callers want to be very picky | 826 // our superclass HideContents(), because some callers want to be very picky |
| 832 // about the order in which these get called. In addition to making the code | 827 // about the order in which these get called. In addition to making the code |
| (...skipping 2442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3275 AddInfoBar(new SavePasswordInfoBarDelegate(this, form_to_save)); | 3270 AddInfoBar(new SavePasswordInfoBarDelegate(this, form_to_save)); |
| 3276 } | 3271 } |
| 3277 | 3272 |
| 3278 Profile* TabContents::GetProfileForPasswordManager() { | 3273 Profile* TabContents::GetProfileForPasswordManager() { |
| 3279 return profile(); | 3274 return profile(); |
| 3280 } | 3275 } |
| 3281 | 3276 |
| 3282 bool TabContents::DidLastPageLoadEncounterSSLErrors() { | 3277 bool TabContents::DidLastPageLoadEncounterSSLErrors() { |
| 3283 return controller().ssl_manager()->ProcessedSSLErrorFromRequest(); | 3278 return controller().ssl_manager()->ProcessedSSLErrorFromRequest(); |
| 3284 } | 3279 } |
| OLD | NEW |