diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-06 16:31:03 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-06 16:31:03 +0000 |
commit | 75d2456a90b4cffed0a0c99bd0444087e8c7c252 (patch) | |
tree | 5f74a6de1d65a0f5685c7e5b523499677febd21e /chrome/common/resource_dispatcher.cc | |
parent | bc52461f54a6a40b74991e4bc77cd0c97e916617 (diff) | |
download | chromium_src-75d2456a90b4cffed0a0c99bd0444087e8c7c252.zip chromium_src-75d2456a90b4cffed0a0c99bd0444087e8c7c252.tar.gz chromium_src-75d2456a90b4cffed0a0c99bd0444087e8c7c252.tar.bz2 |
Spelling correction: s/nonexistant/nonexistent. And trigger buildbots.
TBR=viettrungluu@chromium.org
Review URL: http://codereview.chromium.org/2630003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51668 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/resource_dispatcher.cc')
-rw-r--r-- | chrome/common/resource_dispatcher.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/common/resource_dispatcher.cc b/chrome/common/resource_dispatcher.cc index 7b2e96d..ace6169 100644 --- a/chrome/common/resource_dispatcher.cc +++ b/chrome/common/resource_dispatcher.cc @@ -275,7 +275,7 @@ bool ResourceDispatcher::OnMessageReceived(const IPC::Message& message) { if (it == pending_requests_.end()) { // This might happen for kill()ed requests on the webkit end, so perhaps it // shouldn't be a warning... - DLOG(WARNING) << "Got response for a nonexistant or finished request"; + DLOG(WARNING) << "Got response for a nonexistent or finished request"; // Release resources in the message if it is a data message. ReleaseResourcesInDataMessage(message); return true; @@ -309,7 +309,7 @@ void ResourceDispatcher::OnUploadProgress( if (it == pending_requests_.end()) { // this might happen for kill()ed requests on the webkit end, so perhaps // it shouldn't be a warning... - DLOG(WARNING) << "Got upload progress for a nonexistant or " + DLOG(WARNING) << "Got upload progress for a nonexistent or " "finished request"; return; } @@ -331,7 +331,7 @@ void ResourceDispatcher::OnReceivedResponse( if (it == pending_requests_.end()) { // This might happen for kill()ed requests on the webkit end, so perhaps it // shouldn't be a warning... - DLOG(WARNING) << "Got response for a nonexistant or finished request"; + DLOG(WARNING) << "Got response for a nonexistent or finished request"; return; } @@ -356,7 +356,7 @@ void ResourceDispatcher::OnReceivedCachedMetadata( if (it == pending_requests_.end()) { // this might happen for kill()ed requests on the webkit end, so perhaps // it shouldn't be a warning... - DLOG(WARNING) << "Got metadata for a nonexistant or finished request"; + DLOG(WARNING) << "Got metadata for a nonexistent or finished request"; return; } @@ -384,7 +384,7 @@ void ResourceDispatcher::OnReceivedData(const IPC::Message& message, if (it == pending_requests_.end()) { // this might happen for kill()ed requests on the webkit end, so perhaps // it shouldn't be a warning... - DLOG(WARNING) << "Got data for a nonexistant or finished request"; + DLOG(WARNING) << "Got data for a nonexistent or finished request"; return; } @@ -407,7 +407,7 @@ void ResourceDispatcher::OnReceivedRedirect( if (it == pending_requests_.end()) { // this might happen for kill()ed requests on the webkit end, so perhaps // it shouldn't be a warning... - DLOG(WARNING) << "Got data for a nonexistant or finished request"; + DLOG(WARNING) << "Got data for a nonexistent or finished request"; return; } @@ -437,7 +437,7 @@ void ResourceDispatcher::OnRequestComplete(int request_id, if (it == pending_requests_.end()) { // this might happen for kill()ed requests on the webkit end, so perhaps // it shouldn't be a warning... - DLOG(WARNING) << "Got 'complete' for a nonexistant or finished request"; + DLOG(WARNING) << "Got 'complete' for a nonexistent or finished request"; return; } |