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

Unified Diff: third_party/WebKit/Source/wtf/HashTable.h

Issue 1807853003: Deprecate some macros in wtf/Assertions.h in favor of base/logging.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Many updates Created 4 years, 9 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/wtf/HashTable.h
diff --git a/third_party/WebKit/Source/wtf/HashTable.h b/third_party/WebKit/Source/wtf/HashTable.h
index 373dbda75bb434f7c78da8374f61bc68e46cc688..aad25e7c29840c7cec0016c97746ae89fe419eee 100644
--- a/third_party/WebKit/Source/wtf/HashTable.h
+++ b/third_party/WebKit/Source/wtf/HashTable.h
@@ -287,7 +287,8 @@ template <typename HashTableType, typename ValueType> struct HashTableAddResult
, m_containerModifications(container->modifications())
#endif
{
- ASSERT_UNUSED(container, container);
+ ALLOW_UNUSED_LOCAL(container);
+ DCHECK(container);
}
ValueType* storedValue;

Powered by Google App Engine
This is Rietveld 408576698