summaryrefslogtreecommitdiff
path: root/base/debug_message.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/debug_message.cc')
-rw-r--r--base/debug_message.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/base/debug_message.cc b/base/debug_message.cc
deleted file mode 100644
index 10f441d315..0000000000
--- 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;
-}