Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Unified Diff: chrome/browser/ui/panels/panel_browser_window.cc

Issue 10536094: TabContentsWrapper -> TabContents, part 44. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/panels/panel_browser_window.h ('k') | chrome/browser/ui/panels/panel_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/panels/panel_browser_window.cc
diff --git a/chrome/browser/ui/panels/panel_browser_window.cc b/chrome/browser/ui/panels/panel_browser_window.cc
index fee6debd3d718d461311bb90c794dcab92dca5b1..ff4ebaea4b4cb62a0b48bd14e1d73f58c5673683 100644
--- a/chrome/browser/ui/panels/panel_browser_window.cc
+++ b/chrome/browser/ui/panels/panel_browser_window.cc
@@ -9,7 +9,7 @@
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/panels/panel.h"
#include "chrome/browser/ui/panels/native_panel.h"
-#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
+#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/window_sizer.h"
#include "content/public/browser/web_contents.h"
@@ -219,7 +219,7 @@ void PanelBrowserWindow::UpdateReloadStopState(bool is_loading, bool force) {
// Panels don't have stop/reload indicator.
}
-void PanelBrowserWindow::UpdateToolbar(TabContentsWrapper* contents,
+void PanelBrowserWindow::UpdateToolbar(TabContents* contents,
bool should_restore_state) {
// Panels do not have a toolbar.
}
@@ -364,7 +364,7 @@ void PanelBrowserWindow::ShowPageInfo(Profile* profile,
}
void PanelBrowserWindow::ShowWebsiteSettings(
Profile* profile,
- TabContentsWrapper* tab_contents_wrapper,
+ TabContents* tab_contents,
const GURL& url,
const content::SSLStatus& ssl,
bool show_history) {
@@ -388,7 +388,7 @@ void PanelBrowserWindow::HandleKeyboardEvent(
}
void PanelBrowserWindow::ShowCreateWebAppShortcutsDialog(
- TabContentsWrapper* tab_contents) {
+ TabContents* tab_contents) {
NOTIMPLEMENTED();
}
@@ -431,7 +431,7 @@ bool PanelBrowserWindow::InPresentationMode() {
}
#endif
-void PanelBrowserWindow::ShowInstant(TabContentsWrapper* preview) {
+void PanelBrowserWindow::ShowInstant(TabContents* preview) {
NOTIMPLEMENTED();
}
@@ -481,7 +481,7 @@ void PanelBrowserWindow::DestroyBrowser() {
native_panel_->DestroyPanelBrowser();
}
-void PanelBrowserWindow::TabInsertedAt(TabContentsWrapper* contents,
+void PanelBrowserWindow::TabInsertedAt(TabContents* contents,
int index,
bool foreground) {
if (panel_->auto_resizable()) {
« no previous file with comments | « chrome/browser/ui/panels/panel_browser_window.h ('k') | chrome/browser/ui/panels/panel_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698