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

Side by Side Diff: content/browser/geolocation/mock_location_provider.cc

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/bind.h" 10 #include "base/bind.h"
11 #include "base/bind_helpers.h" 11 #include "base/bind_helpers.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/memory/weak_ptr.h"
14 #include "base/message_loop.h" 15 #include "base/message_loop.h"
15 #include "base/message_loop_proxy.h" 16 #include "base/message_loop_proxy.h"
16 #include "base/task.h"
17 17
18 MockLocationProvider* MockLocationProvider::instance_ = NULL; 18 MockLocationProvider* MockLocationProvider::instance_ = NULL;
19 19
20 MockLocationProvider::MockLocationProvider(MockLocationProvider** self_ref) 20 MockLocationProvider::MockLocationProvider(MockLocationProvider** self_ref)
21 : state_(STOPPED), 21 : state_(STOPPED),
22 self_ref_(self_ref), 22 self_ref_(self_ref),
23 provider_loop_(base::MessageLoopProxy::current()) { 23 provider_loop_(base::MessageLoopProxy::current()) {
24 CHECK(self_ref_); 24 CHECK(self_ref_);
25 CHECK(*self_ref_ == NULL); 25 CHECK(*self_ref_ == NULL);
26 *self_ref_ = this; 26 *self_ref_ = this;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « content/browser/geolocation/gps_location_provider_linux.h ('k') | content/browser/geolocation/wifi_data_provider_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698