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-11 19:19:58 +0000
committermpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-11 19:19:58 +0000
commitacd1c2aeac51c6b6d425f6f6ab705923da024605 (patch)
tree1382c20210d3168ab59ede3b11b7becce73a4b2d /chrome/browser/extensions/extension_apitest.cc
parent29eed247319db96326d73a2f609ea25a2428f832 (diff)
downloadchromium_src-acd1c2aeac51c6b6d425f6f6ab705923da024605.zip
chromium_src-acd1c2aeac51c6b6d425f6f6ab705923da024605.tar.gz
chromium_src-acd1c2aeac51c6b6d425f6f6ab705923da024605.tar.bz2
Add some logging to IncognitoSplitMode to try to figure out why it's crashing.
BUG=53991 TEST=no Review URL: http://codereview.chromium.org/3651001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62169 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, 3 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_apitest.cc b/chrome/browser/extensions/extension_apitest.cc
index da9e01c..28ecc68 100644
--- a/chrome/browser/extensions/extension_apitest.cc
+++ b/chrome/browser/extensions/extension_apitest.cc
@@ -43,6 +43,7 @@ bool ExtensionApiTest::ResultCatcher::GetNextResult() {
return ret;
}
+ LOG(INFO) << "DEBUG: results aren't empty";
NOTREACHED();
return false;
}
@@ -57,7 +58,7 @@ void ExtensionApiTest::ResultCatcher::Observe(
switch (type.value) {
case NotificationType::EXTENSION_TEST_PASSED:
- LOG(INFO) << "Got EXTENSION_TEST_PASSED notification.";
+ LOG(INFO) << "Got EXTENSION_TEST_PASSED notification (" << this << ").";
results_.push_back(true);
messages_.push_back("");
if (waiting_)
@@ -65,7 +66,7 @@ void ExtensionApiTest::ResultCatcher::Observe(
break;
case NotificationType::EXTENSION_TEST_FAILED:
- LOG(INFO) << "Got EXTENSION_TEST_FAILED notification.";
+ LOG(INFO) << "Got EXTENSION_TEST_FAILED notification (" << this << ").";
results_.push_back(false);
messages_.push_back(*(Details<std::string>(details).ptr()));
if (waiting_)