Index: chrome/browser/ui/views/tab_contents/render_view_context_menu_win.cc |
diff --git a/chrome/browser/ui/views/tab_contents/render_view_context_menu_win.cc b/chrome/browser/ui/views/tab_contents/render_view_context_menu_win.cc |
index 9b70ba1477965ef840e750107f43066da096a431..594800348572eb59e1f760ebe93b7ebac2fced2e 100644 |
--- a/chrome/browser/ui/views/tab_contents/render_view_context_menu_win.cc |
+++ b/chrome/browser/ui/views/tab_contents/render_view_context_menu_win.cc |
@@ -56,8 +56,12 @@ void RenderViewContextMenuWin::ExecuteCommand(int command_id, |
// implements the delegate for the context menu. This would break if there |
// are other delegates for the context menu. This is ok for now as this |
// code only executes for Windows 8 metro mode. |
- Browser* browser = browser::FindTabbedBrowser( |
- profile_->GetOriginalProfile(), false); |
+ // TODO(robertshield): FTB - Switch this to HOST_DESKTOP_TYPE_ASH when |
+ // we make that the default for metro. |
+ Browser* browser = |
+ browser::FindTabbedBrowser(profile_->GetOriginalProfile(), |
+ false, |
+ chrome::HOST_DESKTOP_TYPE_NATIVE); |
if (browser) { |
content::OpenURLParams url_params( |
params_.link_url, |