diff options
author | mseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-06 00:58:07 +0000 |
---|---|---|
committer | mseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-06 00:58:07 +0000 |
commit | dd2cd94551900bd8ea2d81554bdc021054b60d1a (patch) | |
tree | fe0c011d65d76ce1ebbbbd6db89535de566bd73f | |
parent | 2741d240bc6e677fd319b5145125a5e5942bbda7 (diff) | |
download | chromium_src-dd2cd94551900bd8ea2d81554bdc021054b60d1a.zip chromium_src-dd2cd94551900bd8ea2d81554bdc021054b60d1a.tar.gz chromium_src-dd2cd94551900bd8ea2d81554bdc021054b60d1a.tar.bz2 |
Fix typo, "recieve" -> "receive", in chrome/
BUG=none
TEST=none
Review URL: https://codereview.chromium.org/268593017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268349 0039d316-1c4b-4281-b951-d872f2087c98
13 files changed, 14 insertions, 14 deletions
diff --git a/chrome/browser/chromeos/preferences_browsertest.cc b/chrome/browser/chromeos/preferences_browsertest.cc index b8a5267..223a081 100644 --- a/chrome/browser/chromeos/preferences_browsertest.cc +++ b/chrome/browser/chromeos/preferences_browsertest.cc @@ -60,7 +60,7 @@ class PreferencesTest : public LoginManagerTest { } // Sets set of preferences in given |prefs|. Value of prefernece depends of - // |variant| value. For opposite |variant| values all preferences recieve + // |variant| value. For opposite |variant| values all preferences receive // different values. void SetPrefs(PrefService* prefs, bool variant) { prefs->SetBoolean(prefs::kTapToClickEnabled, variant); diff --git a/chrome/browser/extensions/api/push_messaging/push_messaging_invalidation_handler.cc b/chrome/browser/extensions/api/push_messaging/push_messaging_invalidation_handler.cc index a060864..8168d30 100644 --- a/chrome/browser/extensions/api/push_messaging/push_messaging_invalidation_handler.cc +++ b/chrome/browser/extensions/api/push_messaging/push_messaging_invalidation_handler.cc @@ -158,7 +158,7 @@ void PushMessagingInvalidationHandler::OnIncomingInvalidation( // We always forward unknown version invalidation when we receive one. if (invalidation_list.StartsWithUnknownVersion()) { - DVLOG(2) << "Sending push message to reciever, extension is " + DVLOG(2) << "Sending push message to receiver, extension is " << extension_id << ", subchannel is " << subchannel << "and payload was lost"; delegate_->OnMessage(extension_id, subchannel, std::string()); @@ -169,7 +169,7 @@ void PushMessagingInvalidationHandler::OnIncomingInvalidation( if (!max_invalidation.is_unknown_version() && max_invalidation.version() > max_object_version_map_[*it]) { max_object_version_map_[*it] = max_invalidation.version(); - DVLOG(2) << "Sending push message to reciever, extension is " + DVLOG(2) << "Sending push message to receiver, extension is " << extension_id << ", subchannel is " << subchannel << ", and payload is " << max_invalidation.payload(); delegate_->OnMessage(extension_id, diff --git a/chrome/browser/feedback/system_logs/system_logs_fetcher_base.h b/chrome/browser/feedback/system_logs/system_logs_fetcher_base.h index 92e98acf..e49ea20 100644 --- a/chrome/browser/feedback/system_logs/system_logs_fetcher_base.h +++ b/chrome/browser/feedback/system_logs/system_logs_fetcher_base.h @@ -57,7 +57,7 @@ class SystemLogsFetcherBase void Fetch(const SysLogsFetcherCallback& callback); protected: - // Callback passed to all the data sources. It merges the |data| it recieves + // Callback passed to all the data sources. It merges the |data| it receives // into response_. When all the data sources have responded, it deletes their // objects and returns the response to the callback_. After this it // deletes this instance of the object. diff --git a/chrome/browser/invalidation/invalidation_logger.h b/chrome/browser/invalidation/invalidation_logger.h index 3ae1553..befaa4c 100644 --- a/chrome/browser/invalidation/invalidation_logger.h +++ b/chrome/browser/invalidation/invalidation_logger.h @@ -36,7 +36,7 @@ class InvalidationLoggerObserver; // // Observers can be registered and will be called to be notified of any // status change immediatly. They can log there the history of what messages -// they recieve. +// they receive. class InvalidationLogger { diff --git a/chrome/browser/metrics/metrics_log.h b/chrome/browser/metrics/metrics_log.h index 0c063c5..c074823 100644 --- a/chrome/browser/metrics/metrics_log.h +++ b/chrome/browser/metrics/metrics_log.h @@ -55,7 +55,7 @@ struct GoogleUpdateMetrics { bool is_system_install; // The time at which Google Update last started an automatic update check. base::Time last_started_au; - // The time at which Google Update last successfully recieved update + // The time at which Google Update last successfully received update // information from Google servers. base::Time last_checked; // Details about Google Update's attempts to update itself. diff --git a/chrome/browser/resources/quota_internals/message_dispatcher.js b/chrome/browser/resources/quota_internals/message_dispatcher.js index 88646ba..7088a68 100644 --- a/chrome/browser/resources/quota_internals/message_dispatcher.js +++ b/chrome/browser/resources/quota_internals/message_dispatcher.js @@ -9,7 +9,7 @@ /** * Bridge between the browser and the page. * In this file: - * * define EventTargets to recieve message from the browser, + * * define EventTargets to receive message from the browser, * * dispatch browser messages to EventTarget, * * define interface to request data to the browser. */ diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc index a509107..b7e60e3 100644 --- a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc +++ b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc @@ -147,7 +147,7 @@ void AutofillPopupControllerImpl::Show( int available_width = popup_width - RowWidthWithoutText(i); - // Each field recieves space in proportion to its length. + // Each field receives space in proportion to its length. int name_size = available_width * name_width / total_text_length; names_[i] = gfx::ElideText(names_[i], GetNameFontListForRow(i), diff --git a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h index 1929063..a9f35d3 100644 --- a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h +++ b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h @@ -87,7 +87,7 @@ class LocalDiscoveryUIHandler : public content::WebUIMessageHandler, typedef std::map<std::string, DeviceDescription> DeviceDescriptionMap; // Message handlers: - // For when the page is ready to recieve device notifications. + // For when the page is ready to receive device notifications. void HandleStart(const base::ListValue* args); // For when a visibility change occurs. diff --git a/chrome/browser/webdata/autocomplete_syncable_service.cc b/chrome/browser/webdata/autocomplete_syncable_service.cc index 39cfe55..d8b9be2 100644 --- a/chrome/browser/webdata/autocomplete_syncable_service.cc +++ b/chrome/browser/webdata/autocomplete_syncable_service.cc @@ -286,7 +286,7 @@ syncer::SyncError AutocompleteSyncableService::ProcessSyncChanges( void AutocompleteSyncableService::AutofillEntriesChanged( const AutofillChangeList& changes) { - // Check if sync is on. If we recieve this notification prior to sync being + // Check if sync is on. If we receive this notification prior to sync being // started, we'll notify sync to start as soon as it can and later process // all entries when MergeData..() is called. If we receive this notification // sync has exited, it will be synced next time Chrome starts. diff --git a/chrome/common/extensions/api/diagnostics.idl b/chrome/common/extensions/api/diagnostics.idl index b498dbb..5f8f31d7 100644 --- a/chrome/common/extensions/api/diagnostics.idl +++ b/chrome/common/extensions/api/diagnostics.idl @@ -19,7 +19,7 @@ namespace diagnostics { }; dictionary SendPacketResult { - // The IP of the host which we recieves the ICMP reply from. + // The IP of the host which we receives the ICMP reply from. // The IP may differs from our target IP if the packet's ttl is used up. DOMString ip; diff --git a/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php b/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php index e9c4bdf..d32db32 100644 --- a/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php +++ b/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php @@ -827,7 +827,7 @@ class OAuthUtil { $value = isset($split[1]) ? OAuthUtil::urldecode_rfc3986($split[1]) : ''; if (isset($parsed_parameters[$parameter])) { - // We have already recieved parameter(s) with this name, so add to the list + // We have already received parameter(s) with this name, so add to the list // of parameters with this name if (is_scalar($parsed_parameters[$parameter])) { diff --git a/chrome/test/data/extensions/api_test/activity_log_private/README b/chrome/test/data/extensions/api_test/activity_log_private/README index 64ad3f1..e7d018c 100644 --- a/chrome/test/data/extensions/api_test/activity_log_private/README +++ b/chrome/test/data/extensions/api_test/activity_log_private/README @@ -4,7 +4,7 @@ The tests use two chrome extensions: -test : sends messages to the friend extension and listens for activity logged by the friend extension. Checks the activity has been logged correctly. - -friend: recieves messages from the extension and runs a function based on + -friend: receives messages from the extension and runs a function based on the contents of the message. diff --git a/chrome/test/data/extensions/background_app/background.js b/chrome/test/data/extensions/background_app/background.js index 77efd49..d373ae6 100644 --- a/chrome/test/data/extensions/background_app/background.js +++ b/chrome/test/data/extensions/background_app/background.js @@ -33,7 +33,7 @@ function setupPush() { console.log('registered listener for push messages ' + listeners); } -// This callback recieves the pushed message from the push server. +// This callback receives the pushed message from the push server. function messageCallback(message) { console.log("push messaging callback seen"); } |