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

Unified Diff: webkit/tools/test_shell/test_webview_delegate.cc

Issue 10616: Roll back Rietveld issue 8778 (r5183, appending stderr to layout-test output)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 1 month 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 | « webkit/tools/test_shell/test_shell_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_webview_delegate.cc
===================================================================
--- webkit/tools/test_shell/test_webview_delegate.cc (revision 5205)
+++ webkit/tools/test_shell/test_webview_delegate.cc (working copy)
@@ -82,13 +82,7 @@
void TestWebViewDelegate::DidStartLoading(WebView* webview) {
if (page_is_loading_) {
- // When we started including stderr in layout-test output, a number of
- // number of tests began failing. The vast majority of the new failures
- // were due to either this error message or the one in DidStopLoading.
- // This is being disabled temporarily so we can keep running the tests.
- // See http://code.google.com/p/chromium/issues/detail?id=3937
- // TODO(pamg): Remove this when the underlying bug is fixed.
- //LOG(ERROR) << "DidStartLoading called while loading";
+ LOG(ERROR) << "DidStartLoading called while loading";
return;
}
page_is_loading_ = true;
@@ -96,13 +90,7 @@
void TestWebViewDelegate::DidStopLoading(WebView* webview) {
if (!page_is_loading_) {
- // When we started including stderr in layout-test output, a number of
- // number of tests began failing. The vast majority of the new failures
- // were due to either this error message or the one in DidStartLoading.
- // This is being disabled temporarily so we can keep running the tests.
- // See http://code.google.com/p/chromium/issues/detail?id=3937
- // TODO(pamg): Remove this when the underlying bug is fixed.
- //LOG(ERROR) << "DidStopLoading called while not loading";
+ LOG(ERROR) << "DidStopLoading called while not loading";
return;
}
page_is_loading_ = false;
« no previous file with comments | « webkit/tools/test_shell/test_shell_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698