OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/browser/tab_contents/tab_contents_delegate.h" | 5 #include "content/browser/tab_contents/tab_contents_delegate.h" |
6 | 6 |
7 #include "chrome/common/url_constants.h" | 7 #include "chrome/common/url_constants.h" |
8 #include "ui/gfx/rect.h" | 8 #include "ui/gfx/rect.h" |
9 | 9 |
10 std::string TabContentsDelegate::GetNavigationHeaders(const GURL& url) { | 10 std::string TabContentsDelegate::GetNavigationHeaders(const GURL& url) { |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 void TabContentsDelegate::ContentRestrictionsChanged(TabContents* source) { | 192 void TabContentsDelegate::ContentRestrictionsChanged(TabContents* source) { |
193 } | 193 } |
194 | 194 |
195 bool TabContentsDelegate::ShouldShowHungRendererDialog() { | 195 bool TabContentsDelegate::ShouldShowHungRendererDialog() { |
196 return true; | 196 return true; |
197 } | 197 } |
198 | 198 |
199 void TabContentsDelegate::WorkerCrashed() { | 199 void TabContentsDelegate::WorkerCrashed() { |
200 } | 200 } |
201 | 201 |
| 202 bool TabContentsDelegate::IsHidden(const TabContents* source) const { |
| 203 return false; |
| 204 } |
| 205 |
202 TabContentsDelegate::~TabContentsDelegate() { | 206 TabContentsDelegate::~TabContentsDelegate() { |
203 } | 207 } |
OLD | NEW |