Index: chrome/test/base/testing_profile_manager.cc |
diff --git a/chrome/test/base/testing_profile_manager.cc b/chrome/test/base/testing_profile_manager.cc |
index 0ae9f9995f88fd0ae830221b7029d46e8ce37eb6..2f20b787f26a505aa5a3211f9402dc5ec0221377 100644 |
--- a/chrome/test/base/testing_profile_manager.cc |
+++ b/chrome/test/base/testing_profile_manager.cc |
@@ -7,6 +7,7 @@ |
#include "base/memory/ref_counted.h" |
#include "base/strings/utf_string_conversions.h" |
#include "chrome/browser/prefs/pref_service_syncable.h" |
+#include "chrome/browser/profiles/profile_attributes_storage.h" |
#include "chrome/browser/profiles/profile_info_cache.h" |
#include "chrome/browser/profiles/profile_manager.h" |
#include "chrome/common/chrome_constants.h" |
@@ -230,6 +231,10 @@ ProfileInfoCache* TestingProfileManager::profile_info_cache() { |
return &profile_manager_->GetProfileInfoCache(); |
} |
+ProfileAttributesStorage* TestingProfileManager::profile_attributes_storage() { |
+ return profile_info_cache(); |
+} |
+ |
void TestingProfileManager::SetUpInternal() { |
ASSERT_FALSE(browser_process_->profile_manager()) |
<< "ProfileManager already exists"; |