Chromium Code Reviews| Index: chrome/browser/ui/browser_navigator_params.h |
| diff --git a/chrome/browser/ui/browser_navigator_params.h b/chrome/browser/ui/browser_navigator_params.h |
| index d011c0eb986de499fd4bbafe4abd69549d91e2f7..cfc8104bd068e88cb7dcbbd2b08df417dd265daf 100644 |
| --- a/chrome/browser/ui/browser_navigator_params.h |
| +++ b/chrome/browser/ui/browser_navigator_params.h |
| @@ -55,7 +55,8 @@ namespace chrome { |
| struct NavigateParams { |
| #if defined(OS_ANDROID) |
| explicit NavigateParams(content::WebContents* a_target_contents); |
| -#else |
| +#endif |
| +#if !defined(OS_ANDROID) || defined(USE_AURA) |
|
mfomitchev
2015/11/10 21:27:28
I don't see any changes to browser_navigator_param
Hadi
2015/11/12 16:33:36
I spent some time on this and couldn't figure out
|
| NavigateParams(Browser* browser, |
| const GURL& a_url, |
| ui::PageTransition a_transition); |
| @@ -205,7 +206,7 @@ struct NavigateParams { |
| // Default is IGNORE. |
| RefBehavior ref_behavior; |
| -#if !defined(OS_ANDROID) |
| +#if !defined(OS_ANDROID) || defined(USE_AURA) |
| // [in] Specifies a Browser object where the navigation could occur or the |
| // tab could be added. Navigate() is not obliged to use this Browser if |
| // it is not compatible with the operation being performed. This can be |