Index: chrome/browser/extensions/extension_apitest.h |
diff --git a/chrome/browser/extensions/extension_apitest.h b/chrome/browser/extensions/extension_apitest.h |
index af2dd28756cd101d62cc7f048daa8c0a8ebf80ff..466735dd6ea50296707d13733314580fd4c318b8 100644 |
--- a/chrome/browser/extensions/extension_apitest.h |
+++ b/chrome/browser/extensions/extension_apitest.h |
@@ -33,13 +33,11 @@ class ExtensionApiTest : public ExtensionBrowserTest { |
void Observe(NotificationType type, const NotificationSource& source, |
const NotificationDetails& details); |
- // Did the extension side of the unit test complete? |
- bool completed_; |
- |
- // Did the extension side of the unit test pass? |
- bool passed_; |
+ // A sequential list of pass/fail notifications from the test extension(s). |
+ std::deque<bool> results_; |
// If it failed, what was the error message? |
+ std::deque<std::string> messages_; |
std::string message_; |
}; |