Index: chrome/browser/profiles/profile_impl.cc |
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
index a7f2ac74986e250abe8936528b922756a6ae5dc9..7a0df83d2af302a1d5e6f64d3b3c80a8dc2645a1 100644 |
--- a/chrome/browser/profiles/profile_impl.cc |
+++ b/chrome/browser/profiles/profile_impl.cc |
@@ -40,7 +40,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 +1041,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_ = |