Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ | 5 #ifndef DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ |
| 6 #define DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ | 6 #define DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/single_thread_task_runner.h" | 11 #include "base/single_thread_task_runner.h" |
| 12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
| 13 #include "device/geolocation/geoposition.h" | 13 #include "device/geolocation/geoposition.h" |
| 14 #include "device/geolocation/location_provider_base.h" | 14 #include "device/geolocation/location_provider_base.h" |
| 15 | 15 |
| 16 namespace device { | 16 namespace device { |
| 17 | 17 |
| 18 // Mock implementation of a location provider for testing. | 18 // Mock implementation of a location provider for testing. |
| 19 class MockLocationProvider : public LocationProviderBase { | 19 class MockLocationProvider : public LocationProviderBase { |
| 20 public: | 20 public: |
| 21 enum State { STOPPED, LOW_ACCURACY, HIGH_ACCURACY } state_; | 21 enum State { STOPPED, LOW_ACCURACY, HIGH_ACCURACY } state_; |
| 22 | 22 |
| 23 MockLocationProvider(); | 23 MockLocationProvider(); |
| 24 ~MockLocationProvider() override; | 24 ~MockLocationProvider() override; |
| 25 | 25 |
| 26 bool providers_started() const { return state_ != STOPPED; } | |
|
Kevin M
2016/08/15 19:12:46
This style of inline getter is only really allowed
CJ
2016/08/15 20:11:51
Done.
| |
| 27 | |
| 26 // Updates listeners with the new position. | 28 // Updates listeners with the new position. |
| 27 void HandlePositionChanged(const Geoposition& position); | 29 void HandlePositionChanged(const Geoposition& position); |
| 28 | 30 |
| 29 // LocationProvider implementation. | 31 // LocationProvider implementation. |
| 30 bool StartProvider(bool high_accuracy) override; | 32 bool StartProvider(bool high_accuracy) override; |
| 31 void StopProvider() override; | 33 void StopProvider() override; |
| 32 void GetPosition(Geoposition* position) override; | 34 void GetPosition(Geoposition* position) override; |
| 33 void OnPermissionGranted() override; | 35 void OnPermissionGranted() override; |
| 34 | 36 |
| 35 bool is_permission_granted_; | 37 bool is_permission_granted_; |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 54 // listeners with an error when StartProvider is called. | 56 // listeners with an error when StartProvider is called. |
| 55 LocationProvider* NewAutoFailMockLocationProvider(); | 57 LocationProvider* NewAutoFailMockLocationProvider(); |
| 56 // Similar to NewAutoSuccessMockLocationProvider but mimicks the behavior of | 58 // Similar to NewAutoSuccessMockLocationProvider but mimicks the behavior of |
| 57 // the Network Location provider, in deferring making location updates until | 59 // the Network Location provider, in deferring making location updates until |
| 58 // a permission request has been confirmed. | 60 // a permission request has been confirmed. |
| 59 LocationProvider* NewAutoSuccessMockNetworkLocationProvider(); | 61 LocationProvider* NewAutoSuccessMockNetworkLocationProvider(); |
| 60 | 62 |
| 61 } // namespace device | 63 } // namespace device |
| 62 | 64 |
| 63 #endif // DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ | 65 #endif // DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ |
| OLD | NEW |