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

Unified Diff: chrome/browser/extensions/extension_process_manager_unittest.cc

Issue 3133031: Make TestingProfile use ScopedTempDir. (Closed)
Patch Set: trybots Created 10 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/extension_process_manager_unittest.cc
diff --git a/chrome/browser/extensions/extension_process_manager_unittest.cc b/chrome/browser/extensions/extension_process_manager_unittest.cc
index 8ab9517cf4949eb6dc291e877cdcdb88df53232a..cf2d5d97b9748307f2daeceb4e0a8891ae1956af 100644
--- a/chrome/browser/extensions/extension_process_manager_unittest.cc
+++ b/chrome/browser/extensions/extension_process_manager_unittest.cc
@@ -31,11 +31,11 @@ TEST_F(ExtensionProcessManagerTest, ProcessGrouping) {
// Extensions in different profiles should always be different SiteInstances.
// Note: we don't initialize these, since we're not testing that
// functionality. This means we can get away with a NULL UserScriptMaster.
- TestingProfile profile1(1);
+ TestingProfile profile1;
scoped_ptr<ExtensionProcessManager> manager1(
new ExtensionProcessManager(&profile1));
- TestingProfile profile2(2);
+ TestingProfile profile2;
scoped_ptr<ExtensionProcessManager> manager2(
new ExtensionProcessManager(&profile2));
« no previous file with comments | « chrome/browser/bookmarks/bookmark_drag_data_unittest.cc ('k') | chrome/browser/net/gaia/token_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698