| 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_delegate.h" | 5 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
| 6 | 6 |
| 7 #include "chrome/browser/search_engines/template_url.h" | 7 #include "chrome/browser/search_engines/template_url.h" |
| 8 #include "gfx/rect.h" | 8 #include "gfx/rect.h" |
| 9 | 9 |
| 10 void TabContentsDelegate::DetachContents(TabContents* source) { | 10 void TabContentsDelegate::DetachContents(TabContents* source) { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 void TabContentsDelegate::ConvertContentsToApplication(TabContents* source) { } | 38 void TabContentsDelegate::ConvertContentsToApplication(TabContents* source) { } |
| 39 | 39 |
| 40 bool TabContentsDelegate::CanReloadContents(TabContents* source) const { | 40 bool TabContentsDelegate::CanReloadContents(TabContents* source) const { |
| 41 return true; | 41 return true; |
| 42 } | 42 } |
| 43 | 43 |
| 44 void TabContentsDelegate::ShowHtmlDialog(HtmlDialogUIDelegate* delegate, | 44 void TabContentsDelegate::ShowHtmlDialog(HtmlDialogUIDelegate* delegate, |
| 45 gfx::NativeWindow parent_window) { | 45 gfx::NativeWindow parent_window) { |
| 46 } | 46 } |
| 47 | 47 |
| 48 bool TabContentsDelegate::ShouldSuppressDialogs() { |
| 49 return false; |
| 50 } |
| 51 |
| 48 void TabContentsDelegate::BeforeUnloadFired(TabContents* tab, | 52 void TabContentsDelegate::BeforeUnloadFired(TabContents* tab, |
| 49 bool proceed, | 53 bool proceed, |
| 50 bool* proceed_to_fire_unload) { | 54 bool* proceed_to_fire_unload) { |
| 51 *proceed_to_fire_unload = true; | 55 *proceed_to_fire_unload = true; |
| 52 } | 56 } |
| 53 | 57 |
| 54 void TabContentsDelegate::ForwardMessageToExternalHost( | 58 void TabContentsDelegate::ForwardMessageToExternalHost( |
| 55 const std::string& message, | 59 const std::string& message, |
| 56 const std::string& origin, | 60 const std::string& origin, |
| 57 const std::string& target) { | 61 const std::string& target) { |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 197 |
| 194 void TabContentsDelegate::OnInstantSupportDetermined(int32 page_id, | 198 void TabContentsDelegate::OnInstantSupportDetermined(int32 page_id, |
| 195 bool result) { | 199 bool result) { |
| 196 } | 200 } |
| 197 | 201 |
| 198 void TabContentsDelegate::ContentRestrictionsChanged(TabContents* source) { | 202 void TabContentsDelegate::ContentRestrictionsChanged(TabContents* source) { |
| 199 } | 203 } |
| 200 | 204 |
| 201 TabContentsDelegate::~TabContentsDelegate() { | 205 TabContentsDelegate::~TabContentsDelegate() { |
| 202 } | 206 } |
| OLD | NEW |