Index: chrome/browser/chromeos/boot_times_loader.cc |
=================================================================== |
--- chrome/browser/chromeos/boot_times_loader.cc (revision 116244) |
+++ chrome/browser/chromeos/boot_times_loader.cc (working copy) |
@@ -27,10 +27,10 @@ |
#include "chrome/common/chrome_notification_types.h" |
#include "chrome/common/chrome_switches.h" |
#include "content/browser/renderer_host/render_widget_host_view.h" |
-#include "content/browser/tab_contents/tab_contents.h" |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/navigation_controller.h" |
#include "content/public/browser/notification_service.h" |
+#include "content/public/browser/web_contents.h" |
using content::BrowserThread; |
using content::WebContents; |
@@ -55,7 +55,7 @@ |
++it) { |
Browser* browser = *it; |
for (int i = 0, tab_count = browser->tab_count(); i < tab_count; ++i) { |
- TabContents* tab = browser->GetTabContentsAt(i); |
+ WebContents* tab = browser->GetWebContentsAt(i); |
if (tab->GetRenderWidgetHostView() == rwhv) { |
return tab->GetURL().spec(); |
} |