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

Unified Diff: base/debug/debug_on_start_win.cc

Issue 5984007: Move base/debug_on_start to base/debugger and rename it to be _win since it... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 12 months 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
« no previous file with comments | « base/debug/debug_on_start_win.h ('k') | base/debug_on_start.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/debug_on_start_win.cc
===================================================================
--- base/debug/debug_on_start_win.cc (revision 70360)
+++ base/debug/debug_on_start_win.cc (working copy)
@@ -1,15 +1,18 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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 "base/debug/debug_on_start.h"
+
#include <windows.h>
-#include "base/debug_on_start.h"
-
#include "base/base_switches.h"
#include "base/basictypes.h"
#include "base/debug/debugger.h"
+namespace base {
+namespace debug {
+
// Minimalist implementation to try to find a command line argument. We can use
// kernel32 exported functions but not the CRT functions because we're too early
// in the process startup.
@@ -66,3 +69,6 @@
}
return 0;
}
+
+} // namespace debug
+} // namespace base
« no previous file with comments | « base/debug/debug_on_start_win.h ('k') | base/debug_on_start.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698