summaryrefslogtreecommitdiffstats
path: root/chrome/browser/appcache/appcache_frontend_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/appcache/appcache_frontend_proxy.cc')
-rw-r--r--chrome/browser/appcache/appcache_frontend_proxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/appcache/appcache_frontend_proxy.cc b/chrome/browser/appcache/appcache_frontend_proxy.cc
index c82cb57..d181b14 100644
--- a/chrome/browser/appcache/appcache_frontend_proxy.cc
+++ b/chrome/browser/appcache/appcache_frontend_proxy.cc
@@ -22,7 +22,7 @@ void AppCacheFrontendProxy::OnStatusChanged(const std::vector<int>& host_ids,
void AppCacheFrontendProxy::OnEventRaised(const std::vector<int>& host_ids,
appcache::EventID event_id) {
- DCHECK(event_id != appcache::PROGRESS_EVENT); // See OnProgressEventRaised.
+ DCHECK_NE(event_id, appcache::PROGRESS_EVENT); // See OnProgressEventRaised.
sender_->Send(new AppCacheMsg_EventRaised(host_ids, event_id));
}