Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Unified Diff: third_party/WebKit/Source/platform/StorageQuotaCallbacks.h

Issue 2849903002: Replace ASSERT_NOT_REACHED with NOTREACHED in platform/ (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/StorageQuotaCallbacks.h
diff --git a/third_party/WebKit/Source/platform/StorageQuotaCallbacks.h b/third_party/WebKit/Source/platform/StorageQuotaCallbacks.h
index 6a40b8951dc5e5a99996eab2071269fb657d850a..5aa44572b75dbd72bdf7f5883697dc001d3f0f99 100644
--- a/third_party/WebKit/Source/platform/StorageQuotaCallbacks.h
+++ b/third_party/WebKit/Source/platform/StorageQuotaCallbacks.h
@@ -50,13 +50,13 @@ class PLATFORM_EXPORT StorageQuotaCallbacks
virtual void DidQueryStorageUsageAndQuota(unsigned long long usage_in_bytes,
unsigned long long quota_in_bytes) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
virtual void DidGrantStorageQuota(unsigned long long usage_in_bytes,
unsigned long long granted_quota_in_bytes) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
- virtual void DidFail(WebStorageQuotaError) { ASSERT_NOT_REACHED(); }
+ virtual void DidFail(WebStorageQuotaError) { NOTREACHED(); }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698