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

Unified Diff: chrome/browser/browser_process_impl_win.cc

Issue 11299192: Ensure that Metro chrome in ASH is able to connect to an existing desktop chrome AURA process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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/browser_process_impl_win.cc
===================================================================
--- chrome/browser/browser_process_impl_win.cc (revision 0)
+++ chrome/browser/browser_process_impl_win.cc (revision 0)
@@ -0,0 +1,30 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+#include "chrome/browser/browser_process_impl.h"
+
+#include "base/command_line.h"
+#include "chrome/common/chrome_switches.h"
+
+#if defined(USE_AURA)
+#include "chrome/browser/metro_viewer/metro_viewer_process_host_win.h"
+#endif
+
+void BrowserProcessImpl::PlatformSpecificCommandLineProcessing(
+ const CommandLine& command_line) {
+#if defined(USE_AURA)
+ PerformInitForWindowsAura(command_line);
+#endif
+}
+
+#if defined(USE_AURA)
+void BrowserProcessImpl::PerformInitForWindowsAura(
+ const CommandLine& command_line) {
+ if (command_line.HasSwitch(switches::kViewerConnection)) {
+ // Tell the metro viewer process host to connect to the given IPC channel.
+ metro_viewer_process_host_.reset(
+ new MetroViewerProcessHost(
+ command_line.GetSwitchValueASCII(switches::kViewerConnection)));
+ }
+}
+#endif
Property changes on: chrome\browser\browser_process_impl_win.cc
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698