diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-01 16:08:52 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-01 16:08:52 +0000 |
commit | d028296ec1c0fdfbd40e2390ca3121de7055295d (patch) | |
tree | da32e476d290074ceaaaaee65659e54a2dae822f /chrome_frame | |
parent | 1e3d150462ba6d3f9952e2ee976cb26396e3452c (diff) | |
download | chromium_src-d028296ec1c0fdfbd40e2390ca3121de7055295d.zip chromium_src-d028296ec1c0fdfbd40e2390ca3121de7055295d.tar.gz chromium_src-d028296ec1c0fdfbd40e2390ca3121de7055295d.tar.bz2 |
Remove base/debug_util. Move the debug UI related functions to base/debug/debugger.h
Move the OS X specific crash report changing function to base/mac/os_crash_dumps
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/6092005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70358 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/test/net/fake_external_tab.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/test/net/fake_external_tab.cc b/chrome_frame/test/net/fake_external_tab.cc index f678d60..0cb72d1 100644 --- a/chrome_frame/test/net/fake_external_tab.cc +++ b/chrome_frame/test/net/fake_external_tab.cc @@ -12,7 +12,7 @@ #include "app/resource_bundle.h" #include "app/win/scoped_com_initializer.h" #include "base/command_line.h" -#include "base/debug_util.h" +#include "base/debug/debugger.h" #include "base/file_util.h" #include "base/file_version_info.h" #include "base/i18n/icu_util.h" @@ -309,7 +309,7 @@ void CFUrlRequestUnittestRunner::Initialize() { base::Time::EnableHighResolutionTimer(true); SuppressErrorDialogs(); - DebugUtil::SuppressDialogs(); + base::debug::SetSuppressDebugUI(true); #if !defined(PURIFY) logging::SetLogAssertHandler(UnitTestAssertHandler); #endif // !defined(PURIFY) |