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

Side by Side Diff: chrome/browser/extensions/extension_service_unittest.h

Issue 77773002: Ensure the ExtensionSystem is ready before initializing an ExtensionAppModelBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: System -> Service Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_SERVICE_UNITTEST_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_
7 7
8 #include "base/at_exit.h" 8 #include "base/at_exit.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/files/scoped_temp_dir.h" 10 #include "base/files/scoped_temp_dir.h"
(...skipping 28 matching lines...) Expand all
39 bool profile_is_managed; 39 bool profile_is_managed;
40 40
41 ExtensionServiceInitParams(); 41 ExtensionServiceInitParams();
42 }; 42 };
43 43
44 ExtensionServiceTestBase(); 44 ExtensionServiceTestBase();
45 virtual ~ExtensionServiceTestBase(); 45 virtual ~ExtensionServiceTestBase();
46 46
47 void InitializeExtensionService(const ExtensionServiceInitParams& params); 47 void InitializeExtensionService(const ExtensionServiceInitParams& params);
48 48
49 static scoped_ptr<TestingProfile> CreateTestingProfile(
50 const ExtensionServiceInitParams& params);
51
52 static ExtensionService* InitializeExtensionServiceForProfile(
53 const ExtensionServiceInitParams& params,
54 Profile* profile);
55
49 void InitializeInstalledExtensionService( 56 void InitializeInstalledExtensionService(
50 const base::FilePath& prefs_file, 57 const base::FilePath& prefs_file,
51 const base::FilePath& source_install_dir); 58 const base::FilePath& source_install_dir);
52 59
53 void InitializeGoodInstalledExtensionService(); 60 void InitializeGoodInstalledExtensionService();
54 61
55 void InitializeEmptyExtensionService(); 62 void InitializeEmptyExtensionService();
56 63
57 void InitializeProcessManager(); 64 void InitializeProcessManager();
58 65
59 void InitializeExtensionServiceWithUpdater(); 66 void InitializeExtensionServiceWithUpdater();
60 67
61 void InitializeExtensionSyncService(); 68 void InitializeExtensionSyncService();
62 69
63 static void SetUpTestCase(); 70 static void SetUpTestCase();
64 71
65 virtual void SetUp() OVERRIDE; 72 virtual void SetUp() OVERRIDE;
66 virtual void TearDown() OVERRIDE; 73 virtual void TearDown() OVERRIDE;
67 74
68 void set_extensions_enabled(bool enabled) { 75 void set_extensions_enabled(bool enabled) {
69 service_->set_extensions_enabled(enabled); 76 service_->set_extensions_enabled(enabled);
70 } 77 }
71 78
72 protected: 79 protected:
73 ExtensionServiceInitParams CreateDefaultInitParams(); 80 ExtensionServiceInitParams CreateDefaultInitParams();
81 static ExtensionServiceInitParams CreateDefaultInitParamsInTempDir(
82 base::ScopedTempDir* temp_dir);
74 83
75 // Destroying at_exit_manager_ will delete all LazyInstances, so it must come 84 // Destroying at_exit_manager_ will delete all LazyInstances, so it must come
76 // after thread_bundle_ in the destruction order. 85 // after thread_bundle_ in the destruction order.
77 base::ShadowingAtExitManager at_exit_manager_; 86 base::ShadowingAtExitManager at_exit_manager_;
78 content::TestBrowserThreadBundle thread_bundle_; 87 content::TestBrowserThreadBundle thread_bundle_;
79 base::ScopedTempDir temp_dir_; 88 base::ScopedTempDir temp_dir_;
80 scoped_ptr<TestingProfile> profile_; 89 scoped_ptr<TestingProfile> profile_;
81 base::FilePath extensions_install_dir_; 90 base::FilePath extensions_install_dir_;
82 base::FilePath data_dir_; 91 base::FilePath data_dir_;
83 // Managed by extensions::ExtensionSystemFactory. 92 // Managed by extensions::ExtensionSystemFactory.
84 ExtensionService* service_; 93 ExtensionService* service_;
85 extensions::ManagementPolicy* management_policy_; 94 extensions::ManagementPolicy* management_policy_;
86 scoped_ptr<ExtensionSyncService> extension_sync_service_; 95 scoped_ptr<ExtensionSyncService> extension_sync_service_;
87 size_t expected_extensions_count_; 96 size_t expected_extensions_count_;
88 97
89 #if defined OS_CHROMEOS 98 #if defined OS_CHROMEOS
90 chromeos::ScopedTestDeviceSettingsService test_device_settings_service_; 99 chromeos::ScopedTestDeviceSettingsService test_device_settings_service_;
91 chromeos::ScopedTestCrosSettings test_cros_settings_; 100 chromeos::ScopedTestCrosSettings test_cros_settings_;
92 chromeos::ScopedTestUserManager test_user_manager_; 101 chromeos::ScopedTestUserManager test_user_manager_;
93 #endif 102 #endif
94 }; 103 };
95 104
96 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ 105 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698