diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-03 10:19:25 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-03 10:19:25 +0000 |
commit | 9fcd474cac2e97c50c093a94e4cc70e0009c43e7 (patch) | |
tree | bd1f16a805b53fddf51b1c1a83b79d076f638b0e | |
parent | 0fe708ef0939e60346968d4c1e42e2d10cc18bd5 (diff) | |
download | chromium_src-9fcd474cac2e97c50c093a94e4cc70e0009c43e7.zip chromium_src-9fcd474cac2e97c50c093a94e4cc70e0009c43e7.tar.gz chromium_src-9fcd474cac2e97c50c093a94e4cc70e0009c43e7.tar.bz2 |
Remove temporary traces added to figure out crash in interactive test.
BUG=102713
TEST=None
Review URL: http://codereview.chromium.org/8438069
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108445 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/accessibility/browser_views_accessibility_browsertest.cc | 8 | ||||
-rw-r--r-- | chrome/browser/google/google_update.cc | 6 |
2 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/accessibility/browser_views_accessibility_browsertest.cc b/chrome/browser/accessibility/browser_views_accessibility_browsertest.cc index e54666c..db4d6fc 100644 --- a/chrome/browser/accessibility/browser_views_accessibility_browsertest.cc +++ b/chrome/browser/accessibility/browser_views_accessibility_browsertest.cc @@ -243,8 +243,6 @@ IN_PROC_BROWSER_TEST_F(BrowserViewsAccessibilityTest, IN_PROC_BROWSER_TEST_F(BrowserViewsAccessibilityTest, TestAboutChromeViewAccObj) { - LOG(ERROR) << "Starting TestAboutChromeViewAccObj test\n"; - // Firstly, test that the WindowDelegate got updated. views::Widget* about_chrome_window = GetBrowserView()->DoShowAboutChromeDialog(); @@ -254,8 +252,6 @@ IN_PROC_BROWSER_TEST_F(BrowserViewsAccessibilityTest, EXPECT_EQ(about_chrome_window->widget_delegate()->GetAccessibleWindowRole(), ui::AccessibilityTypes::ROLE_DIALOG); - LOG(ERROR) << "Test object directly\n"; - // Also test the accessibility object directly. IAccessible* acc_obj = NULL; HRESULT hr = @@ -266,14 +262,10 @@ IN_PROC_BROWSER_TEST_F(BrowserViewsAccessibilityTest, ASSERT_EQ(S_OK, hr); ASSERT_TRUE(NULL != acc_obj); - LOG(ERROR) << "TestAccessibilityInfo\n"; - TestAccessibilityInfo( acc_obj, UTF16ToWide(l10n_util::GetStringUTF16(IDS_ABOUT_CHROME_TITLE)), ROLE_SYSTEM_DIALOG); acc_obj->Release(); - - LOG(ERROR) << "Done\n"; } diff --git a/chrome/browser/google/google_update.cc b/chrome/browser/google/google_update.cc index 4a34d94..35b0491 100644 --- a/chrome/browser/google/google_update.cc +++ b/chrome/browser/google/google_update.cc @@ -44,10 +44,6 @@ GoogleUpdateErrorCode CanUpdateCurrentChrome( BrowserDistribution* dist = BrowserDistribution::GetDistribution(); FilePath user_exe_path = installer::GetChromeInstallPath(false, dist); FilePath machine_exe_path = installer::GetChromeInstallPath(true, dist); - LOG(ERROR) << "About to compare: \n" << chrome_exe_path.value().c_str() - << " to \n" - << user_exe_path.value().c_str() << " and \n" - << machine_exe_path.value().c_str() << "\n"; if (!FilePath::CompareEqualIgnoreCase(chrome_exe_path.value(), user_exe_path.value()) && !FilePath::CompareEqualIgnoreCase(chrome_exe_path.value(), @@ -59,7 +55,6 @@ GoogleUpdateErrorCode CanUpdateCurrentChrome( << L" or " << machine_exe_path.value().c_str() << L"."; return CANNOT_UPGRADE_CHROME_IN_THIS_DIRECTORY; } - LOG(ERROR) << "We continue\n"; string16 app_guid = installer::GetAppGuidForUpdates( !InstallUtil::IsPerUserInstall(chrome_exe_path.value().c_str())); @@ -175,7 +170,6 @@ class GoogleUpdateJobObserver case COMPLETION_CODE_ERROR: error_message_ = text; default: { - LOG(ERROR) << "Error message: " << error_message_.c_str(); NOTREACHED(); result_ = UPGRADE_ERROR; break; |