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 "content/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) { |
11 return std::string(); | 11 return std::string(); |
12 } | 12 } |
13 | 13 |
14 void TabContentsDelegate::LoadProgressChanged(double progress) { | 14 void TabContentsDelegate::LoadProgressChanged(double progress) { |
15 } | 15 } |
16 | 16 |
17 void TabContentsDelegate::DetachContents(TabContents* source) { | 17 void TabContentsDelegate::DetachContents(TabContents* source) { |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 184 |
185 bool TabContentsDelegate::ShouldShowHungRendererDialog() { | 185 bool TabContentsDelegate::ShouldShowHungRendererDialog() { |
186 return true; | 186 return true; |
187 } | 187 } |
188 | 188 |
189 void TabContentsDelegate::WorkerCrashed() { | 189 void TabContentsDelegate::WorkerCrashed() { |
190 } | 190 } |
191 | 191 |
192 TabContentsDelegate::~TabContentsDelegate() { | 192 TabContentsDelegate::~TabContentsDelegate() { |
193 } | 193 } |
OLD | NEW |