| 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..4f199199bedf80d9ae4fea8b9db13a0194ddcd16 100644
|
| --- a/chrome/test/base/testing_profile.cc
|
| +++ b/chrome/test/base/testing_profile.cc
|
| @@ -26,6 +26,7 @@
|
| #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 +716,7 @@ content::GeolocationPermissionContext*
|
| TestingProfile::GetGeolocationPermissionContext() {
|
| if (!geolocation_permission_context_.get()) {
|
| geolocation_permission_context_ =
|
| - ChromeGeolocationPermissionContext::Create(this);
|
| + ChromeGeolocationPermissionContextFactory::Create(this);
|
| }
|
| return geolocation_permission_context_.get();
|
| }
|
|
|