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

Side by Side Diff: content/browser/geofencing/geofencing_service.h

Issue 701953007: Expose mock geofencing service via testRunner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mention unifying bug in a comment Created 6 years 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ 5 #ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_
6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ 6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "content/common/geofencing_status.h" 13 #include "content/common/geofencing_types.h"
14 14
15 template <typename T> 15 template <typename T>
16 struct DefaultSingletonTraits; 16 struct DefaultSingletonTraits;
17 17
18 namespace blink { 18 namespace blink {
19 struct WebCircularGeofencingRegion; 19 struct WebCircularGeofencingRegion;
20 }; 20 };
21 21
22 namespace content { 22 namespace content {
23 23
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 int64 next_registration_id_; 96 int64 next_registration_id_;
97 RegistrationsMap registrations_; 97 RegistrationsMap registrations_;
98 scoped_ptr<GeofencingProvider> provider_; 98 scoped_ptr<GeofencingProvider> provider_;
99 99
100 DISALLOW_COPY_AND_ASSIGN(GeofencingServiceImpl); 100 DISALLOW_COPY_AND_ASSIGN(GeofencingServiceImpl);
101 }; 101 };
102 102
103 } // namespace content 103 } // namespace content
104 104
105 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ 105 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_
OLDNEW
« no previous file with comments | « content/browser/geofencing/geofencing_registration_delegate.h ('k') | content/browser/geofencing/mock_geofencing_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698