diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/render_messages.h | 2 | ||||
-rw-r--r-- | chrome/common/resource_dispatcher.cc | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index 0d9422b..050aae8 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -704,7 +704,7 @@ struct ViewHostMsg_RunFileChooser_Params { // Like Open, but allows picking multiple files to open. OpenMultiple, - // Allows picking a nonexistant file, and prompts to overwrite if the file + // Allows picking a nonexistent file, and prompts to overwrite if the file // already exists. Save, }; 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; } |