| Index: chrome/browser/browser_process_impl_win.cc
|
| diff --git a/chrome/browser/browser_process_impl_win.cc b/chrome/browser/browser_process_impl_win.cc
|
| deleted file mode 100644
|
| index 9d013fdbb23ed98e0356988af2a123a98e4aba3c..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/browser_process_impl_win.cc
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// 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::OnMetroViewerProcessTerminated() {
|
| - metro_viewer_process_host_.reset(NULL);
|
| -}
|
| -
|
| -void BrowserProcessImpl::PerformInitForWindowsAura(
|
| - const CommandLine& command_line) {
|
| - if (command_line.HasSwitch(switches::kViewerConnection) &&
|
| - !metro_viewer_process_host_.get()) {
|
| - // 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
|
|
|