| Index: base/debug_message.cc
|
| diff --git a/base/debug_message.cc b/base/debug_message.cc
|
| deleted file mode 100644
|
| index 10f441d31559d1045201ed949262239f1e243ab4..0000000000000000000000000000000000000000
|
| --- a/base/debug_message.cc
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -// Copyright (c) 2006-2008 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 <windows.h>
|
| -
|
| -// Display the command line. This program is designed to be called from
|
| -// another process to display assertions. Since the other process has
|
| -// complete control of our command line, we assume that it did *not*
|
| -// add the program name as the first parameter. This allows us to just
|
| -// show the command line directly as the message.
|
| -int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
| - LPSTR lpCmdLine, int nCmdShow) {
|
| - LPWSTR cmdline = GetCommandLineW();
|
| - MessageBox(NULL, cmdline, L"Kr\x00d8m", MB_TOPMOST);
|
| - return 0;
|
| -}
|
|
|