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

Side by Side Diff: chrome_frame/crash_reporting/minidump_test.cc

Issue 6070006: Made logging not look up --enable-dcheck from command line (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed more compile failures Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome_frame/chrome_tab.cc ('k') | chrome_frame/test/net/fake_external_tab.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <windows.h> 5 #include <windows.h>
6 #include <objbase.h> 6 #include <objbase.h>
7 #include <dbghelp.h> 7 #include <dbghelp.h>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 EXPECT_FALSE(DumpHasStream(HandleOperationListStream)); 427 EXPECT_FALSE(DumpHasStream(HandleOperationListStream));
428 EXPECT_FALSE(DumpHasStream(TokenStream)); 428 EXPECT_FALSE(DumpHasStream(TokenStream));
429 } 429 }
430 430
431 } // namespace 431 } // namespace
432 432
433 int main(int argc, char** argv) { 433 int main(int argc, char** argv) {
434 testing::InitGoogleTest(&argc, argv); 434 testing::InitGoogleTest(&argc, argv);
435 CommandLine::Init(argc, argv); 435 CommandLine::Init(argc, argv);
436 436
437 logging::InitLogging(L"CON", 437 logging::InitLogging(
438 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, 438 L"CON",
439 logging::DONT_LOCK_LOG_FILE, 439 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG,
440 logging::APPEND_TO_OLD_LOG_FILE); 440 logging::DONT_LOCK_LOG_FILE,
441 logging::APPEND_TO_OLD_LOG_FILE,
442 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
441 return RUN_ALL_TESTS(); 443 return RUN_ALL_TESTS();
442 } 444 }
OLDNEW
« no previous file with comments | « chrome_frame/chrome_tab.cc ('k') | chrome_frame/test/net/fake_external_tab.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698