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

Side by Side Diff: device/geolocation/fake_location_provider.cc

Issue 2161223003: Adds GeolocationFeature for Blimp Geolocation project. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@engine_feature_prep
Patch Set: Addresses kmarshall's #82 comments. Created 4 years, 4 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // This file implements a fake location provider and the factory functions for
6 // various ways of creating it.
7 // TODO(lethalantidote): Convert location_arbitrator_impl to use actual mock
8 // instead of FakeLocationProvider.
9
10 #include "device/geolocation/fake_location_provider.h"
11
12 #include "base/bind.h"
13 #include "base/bind_helpers.h"
14 #include "base/compiler_specific.h"
15 #include "base/location.h"
16 #include "base/logging.h"
17 #include "base/memory/weak_ptr.h"
18 #include "base/threading/thread_task_runner_handle.h"
19
20 namespace device {
21
22 FakeLocationProvider::FakeLocationProvider()
23 : provider_task_runner_(base::ThreadTaskRunnerHandle::Get()) {}
24
25 FakeLocationProvider::~FakeLocationProvider() {}
26
27 void FakeLocationProvider::HandlePositionChanged(const Geoposition& position) {
28 if (provider_task_runner_->BelongsToCurrentThread()) {
29 // The location arbitrator unit tests rely on this method running
30 // synchronously.
31 position_ = position;
32 NotifyCallback(position_);
33 } else {
34 provider_task_runner_->PostTask(
35 FROM_HERE, base::Bind(&FakeLocationProvider::HandlePositionChanged,
36 base::Unretained(this), position));
37 }
38 }
39
40 bool FakeLocationProvider::StartProvider(bool high_accuracy) {
41 state_ = high_accuracy ? HIGH_ACCURACY : LOW_ACCURACY;
42 return true;
43 }
44
45 void FakeLocationProvider::StopProvider() {
46 state_ = STOPPED;
47 }
48
49 const Geoposition& FakeLocationProvider::GetPosition() {
50 return position_;
51 }
52
53 void FakeLocationProvider::OnPermissionGranted() {
54 is_permission_granted_ = true;
55 }
56
57 } // namespace device
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698