Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: chrome/browser/geolocation/geolocation_dispatcher_host.cc

Issue 6597044: Revert 76228 - Move core pieces of geolocation from chrome to content.This is... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698