| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index 735cba8acb25dc9e8cff36bb2870cc7a987155a7..3d399049478a2f60a7dbf500f407b096ec3b8a7d 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -40,6 +40,7 @@
|
| #include "chrome/browser/extensions/extension_system.h"
|
| #include "chrome/browser/extensions/user_script_master.h"
|
| #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h"
|
| +#include "chrome/browser/geolocation/chrome_geolocation_permission_context_factory.h"
|
| #include "chrome/browser/history/shortcuts_backend.h"
|
| #include "chrome/browser/history/top_sites.h"
|
| #include "chrome/browser/metrics/metrics_service.h"
|
| @@ -851,7 +852,7 @@ content::GeolocationPermissionContext*
|
| ProfileImpl::GetGeolocationPermissionContext() {
|
| if (!geolocation_permission_context_.get()) {
|
| geolocation_permission_context_ =
|
| - ChromeGeolocationPermissionContext::Create(this);
|
| + ChromeGeolocationPermissionContextFactory::Create(this);
|
| }
|
| return geolocation_permission_context_.get();
|
| }
|
|
|