Index: chrome/test/base/testing_profile.cc |
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc |
index 63eab1b5640d4241d6d69afacbdde8714495f23d..b201a93e0409a893d49a55af8d208951a9a327ba 100644 |
--- a/chrome/test/base/testing_profile.cc |
+++ b/chrome/test/base/testing_profile.cc |
@@ -25,7 +25,7 @@ |
#include "chrome/browser/extensions/test_extension_system.h" |
#include "chrome/browser/favicon/favicon_service.h" |
#include "chrome/browser/favicon/favicon_service_factory.h" |
-#include "chrome/browser/geolocation/chrome_geolocation_permission_context.h" |
+#include "chrome/browser/geolocation/chrome_geolocation_permission_context_factory.h" |
#include "chrome/browser/history/history.h" |
#include "chrome/browser/history/history_backend.h" |
#include "chrome/browser/history/history_service_factory.h" |
@@ -715,7 +715,7 @@ content::GeolocationPermissionContext* |
TestingProfile::GetGeolocationPermissionContext() { |
if (!geolocation_permission_context_.get()) { |
geolocation_permission_context_ = |
- ChromeGeolocationPermissionContext::Create(this); |
+ ChromeGeolocationPermissionContextFactory::Create(this); |
} |
return geolocation_permission_context_.get(); |
} |