| 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_FAKE_LOCATION_PROVIDER_H_ |
| 6 #define DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ | 6 #define DEVICE_GEOLOCATION_FAKE_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 // Fake implementation of a location provider for testing. |
| 19 class MockLocationProvider : public LocationProviderBase { | 19 class FakeLocationProvider : public LocationProviderBase { |
| 20 public: | 20 public: |
| 21 enum State { STOPPED, LOW_ACCURACY, HIGH_ACCURACY } state_; | 21 enum State { STOPPED, LOW_ACCURACY, HIGH_ACCURACY } state_ = STOPPED; |
| 22 | 22 |
| 23 MockLocationProvider(); | 23 FakeLocationProvider(); |
| 24 ~MockLocationProvider() override; | 24 ~FakeLocationProvider() override; |
| 25 | |
| 26 bool is_started() const { return state_ != STOPPED; } | |
| 27 bool is_permission_granted() const { return is_permission_granted_; } | |
| 28 const Geoposition& position() const { return position_; } | |
| 29 | 25 |
| 30 // Updates listeners with the new position. | 26 // Updates listeners with the new position. |
| 31 void HandlePositionChanged(const Geoposition& position); | 27 void HandlePositionChanged(const Geoposition& position); |
| 32 | 28 |
| 29 State state() const { return state_; } |
| 30 bool is_permission_granted() const { return is_permission_granted_; } |
| 31 |
| 33 // LocationProvider implementation. | 32 // LocationProvider implementation. |
| 34 bool StartProvider(bool high_accuracy) override; | 33 bool StartProvider(bool high_accuracy) override; |
| 35 void StopProvider() override; | 34 void StopProvider() override; |
| 36 const Geoposition& GetPosition() override; | 35 const Geoposition& GetPosition() override; |
| 37 void OnPermissionGranted() override; | 36 void OnPermissionGranted() override; |
| 38 | 37 |
| 39 private: | |
| 40 bool is_permission_granted_; | |
| 41 Geoposition position_; | |
| 42 scoped_refptr<base::SingleThreadTaskRunner> provider_task_runner_; | 38 scoped_refptr<base::SingleThreadTaskRunner> provider_task_runner_; |
| 43 | 39 |
| 44 DISALLOW_COPY_AND_ASSIGN(MockLocationProvider); | 40 private: |
| 41 bool is_permission_granted_ = false; |
| 42 Geoposition position_; |
| 43 |
| 44 DISALLOW_COPY_AND_ASSIGN(FakeLocationProvider); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 } // namespace device | 47 } // namespace device |
| 48 | 48 |
| 49 #endif // DEVICE_GEOLOCATION_MOCK_LOCATION_PROVIDER_H_ | 49 #endif // DEVICE_GEOLOCATION_FAKE_LOCATION_PROVIDER_H_ |
| OLD | NEW |