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

Unified Diff: base/debug/trace_event.h

Issue 8772049: Fix Aura build break. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/trace_event.h
diff --git a/base/debug/trace_event.h b/base/debug/trace_event.h
index c6d62bce79ce521425844c8423cab35a3bcd1f0a..8996a581595a9792ed28bf0ac3e1c3d71383e122 100644
--- a/base/debug/trace_event.h
+++ b/base/debug/trace_event.h
@@ -639,7 +639,7 @@ class BASE_EXPORT TraceValue {
// same pointer is used on different processes.
class BASE_EXPORT TraceID {
public:
- TraceID() : data_(NULL) {}
+ TraceID() : data_(0u) {}
TraceID(void* rhs);
TraceID(unsigned long long rhs) : data_(static_cast<uint64>(rhs)) {}
TraceID(unsigned long rhs) : data_(static_cast<uint64>(rhs)) {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698