diff options
author | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-03 12:32:14 +0000 |
---|---|---|
committer | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-03 12:32:14 +0000 |
commit | a2c92a1c2ec5dac7671b0bf100fe1f3b27c71f8e (patch) | |
tree | f3787c1f22d263aa533cbe0f094440da1349e2bf /content/browser/geolocation | |
parent | 6a19b257d4d6f9b98f754af68cd630242b3c8782 (diff) | |
download | chromium_src-a2c92a1c2ec5dac7671b0bf100fe1f3b27c71f8e.zip chromium_src-a2c92a1c2ec5dac7671b0bf100fe1f3b27c71f8e.tar.gz chromium_src-a2c92a1c2ec5dac7671b0bf100fe1f3b27c71f8e.tar.bz2 |
Fix some grammar in comments, error messages and documentation.
Thanks to all my reviewers, you are legion. I hope I didn't waste too
much of your time.
BUG=None
Review URL: http://codereview.chromium.org/9854039
Review URL: http://codereview.chromium.org/9854043
Review URL: http://codereview.chromium.org/9863058
Review URL: http://codereview.chromium.org/9863059
Review URL: http://codereview.chromium.org/9887005
Review URL: http://codereview.chromium.org/9890002
Review URL: http://codereview.chromium.org/9891002
Review URL: http://codereview.chromium.org/9895003
Review URL: http://codereview.chromium.org/9896002
Review URL: http://codereview.chromium.org/9896003
Review URL: http://codereview.chromium.org/9897002
Review URL: http://codereview.chromium.org/9897003
Review URL: http://codereview.chromium.org/9903004
Review URL: http://codereview.chromium.org/9904003
Review URL: http://codereview.chromium.org/9904002
Review URL: http://codereview.chromium.org/9904004
Review URL: http://codereview.chromium.org/9906002
Review URL: http://codereview.chromium.org/9906001
Review URL: http://codereview.chromium.org/9906003
Review URL: http://codereview.chromium.org/9909001
Review URL: http://codereview.chromium.org/9909002
Review URL: http://codereview.chromium.org/9909003
Review URL: http://codereview.chromium.org/9909004
Review URL: http://codereview.chromium.org/9910001
Review URL: http://codereview.chromium.org/9910002
Review URL: http://codereview.chromium.org/9910010
Review URL: http://codereview.chromium.org/9911001
Review URL: http://codereview.chromium.org/9912001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130359 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation')
-rw-r--r-- | content/browser/geolocation/core_location_data_provider_mac.mm | 2 | ||||
-rw-r--r-- | content/browser/geolocation/mock_location_provider.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/geolocation/core_location_data_provider_mac.mm b/content/browser/geolocation/core_location_data_provider_mac.mm index 1a86edd..5133cd6 100644 --- a/content/browser/geolocation/core_location_data_provider_mac.mm +++ b/content/browser/geolocation/core_location_data_provider_mac.mm @@ -82,7 +82,7 @@ enum { - (void)dealloc; // Can be called from any thread since it does not require an NSRunLoop. However -// it is not threadsafe to receive concurrent calls until after it's first +// it is not threadsafe to receive concurrent calls until after a first // successful call (to avoid |bundle_| being double initialized) - (BOOL)locationDataAvailable; diff --git a/content/browser/geolocation/mock_location_provider.cc b/content/browser/geolocation/mock_location_provider.cc index 756b926..29b7058 100644 --- a/content/browser/geolocation/mock_location_provider.cc +++ b/content/browser/geolocation/mock_location_provider.cc @@ -62,7 +62,7 @@ void MockLocationProvider::OnPermissionGranted(const GURL& requesting_frame) { permission_granted_url_ = requesting_frame; } -// Mock location provider that automatically calls back it's client at most +// Mock location provider that automatically calls back its client at most // once, when StartProvider or OnPermissionGranted is called. Use // |requires_permission_to_start| to select which event triggers the callback. class AutoMockLocationProvider : public MockLocationProvider { |