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

Unified Diff: chrome/browser/ui/browser_navigator.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/ui/browser_navigator.h
===================================================================
--- chrome/browser/ui/browser_navigator.h (revision 66453)
+++ chrome/browser/ui/browser_navigator.h (working copy)
@@ -15,7 +15,7 @@
class Browser;
class Profile;
-class TabContents;
+class TabContentsWrapper;
namespace browser {
@@ -44,7 +44,7 @@
NavigateParams(Browser* browser,
const GURL& a_url,
PageTransition::Type a_transition);
- NavigateParams(Browser* browser, TabContents* a_target_contents);
+ NavigateParams(Browser* browser, TabContentsWrapper* a_target_contents);
~NavigateParams();
// The URL/referrer to be loaded. Ignored if |target_contents| is non-NULL.
@@ -63,13 +63,13 @@
// a new TabContents, this field will remain NULL and the TabContents
// deleted if the TabContents it created is not added to a TabStripModel
// before Navigate() returns.
- TabContents* target_contents;
+ TabContentsWrapper* target_contents;
// [in] The TabContents that initiated the Navigate() request if such context
// is necessary. Default is NULL, i.e. no context.
// [out] If NULL, this value will be set to the selected TabContents in the
// originating browser prior to the operation performed by Navigate().
- TabContents* source_contents;
+ TabContentsWrapper* source_contents;
// The disposition requested by the navigation source. Default is
// CURRENT_TAB. What follows is a set of coercions that happen to this value

Powered by Google App Engine
This is Rietveld 408576698