summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_apitest.cc
diff options
context:
space:
mode:
authormpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-13 18:53:33 +0000
committermpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-13 18:53:33 +0000
commite838eaf07bb06e71793138d18869717dcf4497e9 (patch)
tree966816ca53709f7d4cb0c69290156a00c6ed6e8e /chrome/browser/extensions/extension_apitest.cc
parent1dbadbd465e5cce4031dd20eb901ac7da2d67668 (diff)
downloadchromium_src-e838eaf07bb06e71793138d18869717dcf4497e9.zip
chromium_src-e838eaf07bb06e71793138d18869717dcf4497e9.tar.gz
chromium_src-e838eaf07bb06e71793138d18869717dcf4497e9.tar.bz2
Fix flaky IncognitoSplitMode.
Stop processing incoming messages in BrowserRenderProcessHost when it is about to be deleted. See comment 20 on the bug for details. BUG=53991 TEST=handled by existing test Review URL: http://codereview.chromium.org/3656005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62432 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_apitest.cc')
-rw-r--r--chrome/browser/extensions/extension_apitest.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_apitest.cc b/chrome/browser/extensions/extension_apitest.cc
index 28ecc68..da9e01c 100644
--- a/chrome/browser/extensions/extension_apitest.cc
+++ b/chrome/browser/extensions/extension_apitest.cc
@@ -43,7 +43,6 @@ bool ExtensionApiTest::ResultCatcher::GetNextResult() {
return ret;
}
- LOG(INFO) << "DEBUG: results aren't empty";
NOTREACHED();
return false;
}
@@ -58,7 +57,7 @@ void ExtensionApiTest::ResultCatcher::Observe(
switch (type.value) {
case NotificationType::EXTENSION_TEST_PASSED:
- LOG(INFO) << "Got EXTENSION_TEST_PASSED notification (" << this << ").";
+ LOG(INFO) << "Got EXTENSION_TEST_PASSED notification.";
results_.push_back(true);
messages_.push_back("");
if (waiting_)
@@ -66,7 +65,7 @@ void ExtensionApiTest::ResultCatcher::Observe(
break;
case NotificationType::EXTENSION_TEST_FAILED:
- LOG(INFO) << "Got EXTENSION_TEST_FAILED notification (" << this << ").";
+ LOG(INFO) << "Got EXTENSION_TEST_FAILED notification.";
results_.push_back(false);
messages_.push_back(*(Details<std::string>(details).ptr()));
if (waiting_)