diff options
Diffstat (limited to 'chrome/browser/extensions/extension_apitest.h')
-rw-r--r-- | chrome/browser/extensions/extension_apitest.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/chrome/browser/extensions/extension_apitest.h b/chrome/browser/extensions/extension_apitest.h index af2dd28..466735d 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_; }; |