Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5790)

Unified Diff: chrome/browser/extensions/test_extension_system.h

Issue 493633003: Browser changes for wiring up RequestContentScript API to shared memory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/test_extension_system.h
diff --git a/chrome/browser/extensions/test_extension_system.h b/chrome/browser/extensions/test_extension_system.h
index fb88ef3494ba724e146e78fde3a47998f4928e3e..f436c9fb5532fda3d4e99b2b609c9287151169b1 100644
--- a/chrome/browser/extensions/test_extension_system.h
+++ b/chrome/browser/extensions/test_extension_system.h
@@ -86,9 +86,10 @@ class TestExtensionSystem : public ExtensionSystem {
GetDeclarativeUserScriptMasterByExtension(
const ExtensionId& extension_id) OVERRIDE;
- // Note that you probably want to use base::RunLoop().RunUntilIdle() right
- // after this to run all the accumulated tasks.
- void SetReady() { ready_.Signal(); }
+ void SetReady() {
Devlin 2014/08/21 17:14:09 why this change?
Mark Dittmer 2014/08/21 21:25:12 Done.
+ LOG(INFO) << "SetReady()";
+ ready_.Signal();
+ }
// Factory method for tests to use with SetTestingProfile.
static KeyedService* Build(content::BrowserContext* profile);

Powered by Google App Engine
This is Rietveld 408576698