| OLD | NEW |
| 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 #include "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
| 6 #include "content/browser/geolocation/geolocation_provider_impl.h" | 6 #include "content/browser/geolocation/geolocation_provider_impl.h" |
| 7 #include "content/common/geolocation_service.mojom.h" | 7 #include "content/common/geolocation_service.mojom.h" |
| 8 #include "content/public/common/mojo_geoposition.mojom.h" | 8 #include "content/public/common/mojo_geoposition.mojom.h" |
| 9 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 9 #include "mojo/public/cpp/bindings/binding.h" |
| 10 | 10 |
| 11 #ifndef CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ | 11 #ifndef CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ |
| 12 #define CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ | 12 #define CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 class GeolocationProvider; | 16 class GeolocationProvider; |
| 17 class GeolocationServiceContext; | 17 class GeolocationServiceContext; |
| 18 | 18 |
| 19 // Implements the GeolocationService Mojo interface. | 19 // Implements the GeolocationService Mojo interface. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 bool high_accuracy_; | 75 bool high_accuracy_; |
| 76 | 76 |
| 77 bool has_position_to_report_; | 77 bool has_position_to_report_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(GeolocationServiceImpl); | 79 DISALLOW_COPY_AND_ASSIGN(GeolocationServiceImpl); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace content | 82 } // namespace content |
| 83 | 83 |
| 84 #endif // CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ | 84 #endif // CONTENT_BROWSER_GEOLOCATION_GEOLOCATION_SERVICE_IMPL_H_ |
| OLD | NEW |