 Chromium Code Reviews
 Chromium Code Reviews Issue 2907493002:
  ChromeOS: Per-user time zone: refactor tests first.  (Closed)
    
  
    Issue 2907493002:
  ChromeOS: Per-user time zone: refactor tests first.  (Closed) 
  | 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_; | 
| }; |