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

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

Issue 2907493002: ChromeOS: Per-user time zone: refactor tests first. (Closed)
Patch Set: Move more code from dependent CL here. Created 3 years, 7 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 0a54e6c788c65edd0fb8a64481f71c4f3ac4ff9f..6b1c8008defe0ea2ed56e62cb12eadd7316136cc 100644
--- a/chrome/browser/extensions/test_extension_system.h
+++ b/chrome/browser/extensions/test_extension_system.h
@@ -10,6 +10,10 @@
#include "extensions/browser/extension_system.h"
#include "extensions/common/one_shot_event.h"
+#if defined(OS_CHROMEOS)
+#include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h"
+#endif
+
class Profile;
class TestingValueStore;
@@ -91,6 +95,10 @@ class TestExtensionSystem : public ExtensionSystem {
std::unique_ptr<QuotaService> quota_service_;
std::unique_ptr<AppSorting> app_sorting_;
OneShotEvent ready_;
+
+#if defined(OS_CHROMEOS)
+ std::unique_ptr<chromeos::ScopedTestUserManager> test_user_manager_;
+#endif
stevenjb 2017/05/25 21:20:24 I think instead the extensions team may prefer a d
Alexander Alekseev 2017/05/26 02:18:01 This sounds a bit too complicate. We will need to
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698