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

Unified Diff: Source/wtf/VectorTraits.h

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Address comments. Created 7 years 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
« no previous file with comments | « Source/wtf/Vector.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/VectorTraits.h
diff --git a/Source/wtf/VectorTraits.h b/Source/wtf/VectorTraits.h
index 20bccc9890ba65855f1dfe3fcca8c171e2147b53..ec3a926408f51909dbec3fac1db6b6790ac8c6e0 100644
--- a/Source/wtf/VectorTraits.h
+++ b/Source/wtf/VectorTraits.h
@@ -46,7 +46,7 @@ namespace WTF {
static const bool canCopyWithMemcpy = false;
static const bool canFillWithMemset = false;
static const bool canCompareWithMemcmp = false;
- static const bool needsVisiting = NeedsVisiting<T>::value;
+ static const bool needsTracing = NeedsTracing<T>::value;
static const bool isWeak = IsWeak<T>::value;
};
@@ -60,7 +60,7 @@ namespace WTF {
static const bool canCopyWithMemcpy = true;
static const bool canFillWithMemset = sizeof(T) == sizeof(char);
static const bool canCompareWithMemcmp = true;
- static const bool needsVisiting = NeedsVisiting<T>::value;
+ static const bool needsTracing = NeedsTracing<T>::value;
static const bool isWeak = IsWeak<T>::value;
};
@@ -98,7 +98,7 @@ namespace WTF {
static const bool canCopyWithMemcpy = FirstTraits::canCopyWithMemcpy && SecondTraits::canCopyWithMemcpy;
static const bool canFillWithMemset = false;
static const bool canCompareWithMemcmp = FirstTraits::canCompareWithMemcmp && SecondTraits::canCompareWithMemcmp;
- static const bool needsVisiting = FirstTraits::needsVisiting || SecondTraits::needsVisiting;
+ static const bool needsTracing = FirstTraits::needsTracing || SecondTraits::needsTracing;
static const bool isWeak = FirstTraits::isWeak || SecondTraits::isWeak;
};
« no previous file with comments | « Source/wtf/Vector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698