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

Unified Diff: chrome/test/base/testing_profile.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/test/base/testing_profile.h
diff --git a/chrome/test/base/testing_profile.h b/chrome/test/base/testing_profile.h
index fcb80e07b32453626ef6cdbb88dea69a110db3f8..b28bf4f89514420d8a71e02c636ec6e74fb54bbf 100644
--- a/chrome/test/base/testing_profile.h
+++ b/chrome/test/base/testing_profile.h
@@ -19,6 +19,10 @@
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "extensions/features/features.h"
+#if defined(OS_CHROMEOS)
+#include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h"
+#endif
+
class BrowserContextDependencyManager;
class ExtensionSpecialStoragePolicy;
class HostContentSettingsMap;
@@ -436,6 +440,11 @@ class TestingProfile : public Profile {
std::string profile_name_;
+#if defined(OS_CHROMEOS)
+ std::unique_ptr<chromeos::ScopedCrosSettingsTestHelper>
+ scoped_cros_settings_test_helper_;
+#endif // defined(OS_CHROMEOS)
stevenjb 2017/05/25 21:20:24 Same here, we should probably create CrOsTestingPr
+
std::unique_ptr<policy::PolicyService> policy_service_;
};

Powered by Google App Engine
This is Rietveld 408576698