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

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

Issue 9911001: Fix some grammar in content/browser/geolocation/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « content/browser/geolocation/core_location_data_provider_mac.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } 55 }
56 56
57 void MockLocationProvider::GetPosition(Geoposition* position) { 57 void MockLocationProvider::GetPosition(Geoposition* position) {
58 *position = position_; 58 *position = position_;
59 } 59 }
60 60
61 void MockLocationProvider::OnPermissionGranted(const GURL& requesting_frame) { 61 void MockLocationProvider::OnPermissionGranted(const GURL& requesting_frame) {
62 permission_granted_url_ = requesting_frame; 62 permission_granted_url_ = requesting_frame;
63 } 63 }
64 64
65 // Mock location provider that automatically calls back it's client at most 65 // Mock location provider that automatically calls back its client at most
66 // once, when StartProvider or OnPermissionGranted is called. Use 66 // once, when StartProvider or OnPermissionGranted is called. Use
67 // |requires_permission_to_start| to select which event triggers the callback. 67 // |requires_permission_to_start| to select which event triggers the callback.
68 class AutoMockLocationProvider : public MockLocationProvider { 68 class AutoMockLocationProvider : public MockLocationProvider {
69 public: 69 public:
70 AutoMockLocationProvider(bool has_valid_location, 70 AutoMockLocationProvider(bool has_valid_location,
71 bool requires_permission_to_start) 71 bool requires_permission_to_start)
72 : MockLocationProvider(&instance_), 72 : MockLocationProvider(&instance_),
73 ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)), 73 ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)),
74 requires_permission_to_start_(requires_permission_to_start), 74 requires_permission_to_start_(requires_permission_to_start),
75 listeners_updated_(false) { 75 listeners_updated_(false) {
(...skipping 46 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/core_location_data_provider_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698