Index: chrome/browser/ui/views/hung_renderer_view.cc |
=================================================================== |
--- chrome/browser/ui/views/hung_renderer_view.cc (revision 75368) |
+++ chrome/browser/ui/views/hung_renderer_view.cc (working copy) |
@@ -10,6 +10,7 @@ |
#include "chrome/browser/renderer_host/render_process_host.h" |
#include "chrome/browser/renderer_host/render_view_host.h" |
#include "chrome/browser/tab_contents/tab_contents.h" |
+#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
#include "chrome/common/chrome_constants.h" |
#include "chrome/common/logging_chrome.h" |
#include "chrome/common/result_codes.h" |
@@ -93,7 +94,7 @@ |
DCHECK(row >= 0 && row < RowCount()); |
string16 title = tab_contentses_[row]->GetTitle(); |
if (title.empty()) |
- title = TabContents::GetDefaultTitle(); |
+ title = TabContentsWrapper::GetDefaultTitle(); |
// TODO(xji): Consider adding a special case if the title text is a URL, |
// since those should always have LTR directionality. Please refer to |
// http://crbug.com/6726 for more information. |