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

Unified Diff: chrome/browser/tabs/tab_strip_model_order_controller.h

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
Index: chrome/browser/tabs/tab_strip_model_order_controller.h
===================================================================
--- chrome/browser/tabs/tab_strip_model_order_controller.h (revision 66453)
+++ chrome/browser/tabs/tab_strip_model_order_controller.h (working copy)
@@ -9,7 +9,7 @@
#include "chrome/browser/tabs/tab_strip_model.h"
#include "chrome/common/page_transition_types.h"
-class TabContents;
+class TabContentsWrapper;
///////////////////////////////////////////////////////////////////////////////
// TabStripModelOrderController
@@ -32,7 +32,7 @@
// Determine where to place a newly opened tab by using the supplied
// transition and foreground flag to figure out how it was opened.
- int DetermineInsertionIndex(TabContents* new_contents,
+ int DetermineInsertionIndex(TabContentsWrapper* new_contents,
PageTransition::Type transition,
bool foreground);
@@ -43,8 +43,8 @@
int DetermineNewSelectedIndex(int removed_index) const;
// Overridden from TabStripModelObserver:
- virtual void TabSelectedAt(TabContents* old_contents,
- TabContents* new_contents,
+ virtual void TabSelectedAt(TabContentsWrapper* old_contents,
+ TabContentsWrapper* new_contents,
int index,
bool user_gesture);

Powered by Google App Engine
This is Rietveld 408576698