| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/geolocation/geolocation_dispatcher_host.h" | 5 #include "chrome/browser/geolocation/geolocation_dispatcher_host.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 } | 182 } |
| 183 } // namespace | 183 } // namespace |
| 184 | 184 |
| 185 GeolocationDispatcherHost* GeolocationDispatcherHost::New( | 185 GeolocationDispatcherHost* GeolocationDispatcherHost::New( |
| 186 int render_process_id, | 186 int render_process_id, |
| 187 GeolocationPermissionContext* geolocation_permission_context) { | 187 GeolocationPermissionContext* geolocation_permission_context) { |
| 188 return new GeolocationDispatcherHostImpl( | 188 return new GeolocationDispatcherHostImpl( |
| 189 render_process_id, | 189 render_process_id, |
| 190 geolocation_permission_context); | 190 geolocation_permission_context); |
| 191 } | 191 } |
| OLD | NEW |