| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This file implements a mock location provider and the factory functions for | 5 // This file implements a mock location provider and the factory functions for |
| 6 // various ways of creating it. | 6 // various ways of creating it. |
| 7 | 7 |
| 8 #include "content/browser/geolocation/mock_location_provider.h" | 8 #include "content/browser/geolocation/mock_location_provider.h" |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/message_loop_proxy.h" | 13 #include "base/message_loop_proxy.h" |
| 14 #include "base/task.h" | 14 #include "base/task.h" |
| 15 | 15 |
| 16 // The provider will always be destroyed before the thread it runs on, so ref | 16 // The provider will always be destroyed before the thread it runs on, so ref |
| 17 // counting is not required. | 17 // counting is not required. |
| 18 DISABLE_RUNNABLE_METHOD_REFCOUNT(MockLocationProvider); | 18 DISABLE_RUNNABLE_METHOD_REFCOUNT(MockLocationProvider); |
| 19 | 19 |
| 20 MockLocationProvider* MockLocationProvider::instance_ = NULL; | 20 MockLocationProvider* MockLocationProvider::instance_ = NULL; |
| 21 | 21 |
| 22 MockLocationProvider::MockLocationProvider(MockLocationProvider** self_ref) | 22 MockLocationProvider::MockLocationProvider(MockLocationProvider** self_ref) |
| 23 : state_(STOPPED), | 23 : state_(STOPPED), |
| 24 self_ref_(self_ref), | 24 self_ref_(self_ref), |
| 25 provider_loop_(base::MessageLoopProxy::CreateForCurrentThread()) { | 25 provider_loop_(base::MessageLoopProxy::current()) { |
| 26 CHECK(self_ref_); | 26 CHECK(self_ref_); |
| 27 CHECK(*self_ref_ == NULL); | 27 CHECK(*self_ref_ == NULL); |
| 28 *self_ref_ = this; | 28 *self_ref_ = this; |
| 29 } | 29 } |
| 30 | 30 |
| 31 MockLocationProvider::~MockLocationProvider() { | 31 MockLocationProvider::~MockLocationProvider() { |
| 32 CHECK(*self_ref_ == this); | 32 CHECK(*self_ref_ == this); |
| 33 *self_ref_ = NULL; | 33 *self_ref_ = NULL; |
| 34 } | 34 } |
| 35 | 35 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 return new AutoMockLocationProvider(true, false); | 122 return new AutoMockLocationProvider(true, false); |
| 123 } | 123 } |
| 124 | 124 |
| 125 LocationProviderBase* NewAutoFailMockLocationProvider() { | 125 LocationProviderBase* NewAutoFailMockLocationProvider() { |
| 126 return new AutoMockLocationProvider(false, false); | 126 return new AutoMockLocationProvider(false, false); |
| 127 } | 127 } |
| 128 | 128 |
| 129 LocationProviderBase* NewAutoSuccessMockNetworkLocationProvider() { | 129 LocationProviderBase* NewAutoSuccessMockNetworkLocationProvider() { |
| 130 return new AutoMockLocationProvider(true, true); | 130 return new AutoMockLocationProvider(true, true); |
| 131 } | 131 } |
| OLD | NEW |