| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index fd72bb22ea9ed71e5a1b846a71b34263e516f0ab..d32b465c12ef920b7d5fa8bae83ef4e95fed6694 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -4,6 +4,10 @@
|
|
|
| #include "chrome/browser/profiles/profile_impl.h"
|
|
|
| +#include <list>
|
| +#include <utility>
|
| +#include <vector>
|
| +
|
| #include "base/command_line.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/environment.h"
|
| @@ -39,7 +43,6 @@
|
| #include "chrome/browser/extensions/user_script_master.h"
|
| #include "chrome/browser/favicon/favicon_service.h"
|
| #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h"
|
| -#include "chrome/browser/geolocation/geolocation_content_settings_map.h"
|
| #include "chrome/browser/history/history.h"
|
| #include "chrome/browser/history/shortcuts_backend.h"
|
| #include "chrome/browser/history/top_sites.h"
|
| @@ -1042,12 +1045,6 @@ HostZoomMap* ProfileImpl::GetHostZoomMap() {
|
| return host_zoom_map_.get();
|
| }
|
|
|
| -GeolocationContentSettingsMap* ProfileImpl::GetGeolocationContentSettingsMap() {
|
| - if (!geolocation_content_settings_map_.get())
|
| - geolocation_content_settings_map_ = new GeolocationContentSettingsMap(this);
|
| - return geolocation_content_settings_map_.get();
|
| -}
|
| -
|
| GeolocationPermissionContext* ProfileImpl::GetGeolocationPermissionContext() {
|
| if (!geolocation_permission_context_.get())
|
| geolocation_permission_context_ =
|
|
|