Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 256 bool WaitForExtensionLoadError() { | 256 bool WaitForExtensionLoadError() { |
| 257 return observer_->WaitForExtensionLoadError(); | 257 return observer_->WaitForExtensionLoadError(); |
| 258 } | 258 } |
| 259 | 259 |
| 260 // Wait for the specified extension to crash. Returns true if it really | 260 // Wait for the specified extension to crash. Returns true if it really |
| 261 // crashed. | 261 // crashed. |
| 262 bool WaitForExtensionCrash(const std::string& extension_id) { | 262 bool WaitForExtensionCrash(const std::string& extension_id) { |
| 263 return observer_->WaitForExtensionCrash(extension_id); | 263 return observer_->WaitForExtensionCrash(extension_id); |
| 264 } | 264 } |
| 265 | 265 |
| 266 // Wait for the crx installer to be done. Returns true if it really is done. | 266 // Wait for the crx installer to be done. Returns true if it has finished |
| 267 // successfully. | |
| 267 bool WaitForCrxInstallerDone() { | 268 bool WaitForCrxInstallerDone() { |
|
Devlin
2017/03/20 15:36:46
nit: WaitForCrxInstallerSuccess() to reflect this
michaelpg
2017/03/22 00:17:12
well, it still waits for it to be done, not for it
| |
| 268 return observer_->WaitForCrxInstallerDone(); | 269 return observer_->WaitForCrxInstallerDone(); |
| 269 } | 270 } |
| 270 | 271 |
| 271 // Wait for all extension views to load. | 272 // Wait for all extension views to load. |
| 272 bool WaitForExtensionViewsToLoad() { | 273 bool WaitForExtensionViewsToLoad() { |
| 273 return observer_->WaitForExtensionViewsToLoad(); | 274 return observer_->WaitForExtensionViewsToLoad(); |
| 274 } | 275 } |
| 275 | 276 |
| 276 // Wait for the extension to be idle. | 277 // Wait for the extension to be idle. |
| 277 bool WaitForExtensionIdle(const std::string& extension_id) { | 278 bool WaitForExtensionIdle(const std::string& extension_id) { |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 394 std::unique_ptr<extensions::ExtensionCacheFake> test_extension_cache_; | 395 std::unique_ptr<extensions::ExtensionCacheFake> test_extension_cache_; |
| 395 | 396 |
| 396 // An override so that chrome-extensions://<extension_id>/_test_resources/foo | 397 // An override so that chrome-extensions://<extension_id>/_test_resources/foo |
| 397 // maps to chrome/test/data/extensions/foo. | 398 // maps to chrome/test/data/extensions/foo. |
| 398 extensions::ExtensionProtocolTestHandler test_protocol_handler_; | 399 extensions::ExtensionProtocolTestHandler test_protocol_handler_; |
| 399 | 400 |
| 400 DISALLOW_COPY_AND_ASSIGN(ExtensionBrowserTest); | 401 DISALLOW_COPY_AND_ASSIGN(ExtensionBrowserTest); |
| 401 }; | 402 }; |
| 402 | 403 |
| 403 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ | 404 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BROWSERTEST_H_ |
| OLD | NEW |