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

Side by Side Diff: Source/platform/heap/Visitor.h

Issue 1302183010: Oilpan: Add a compile-time flag: DETAILED_MEMORY_INFRA (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 377
378 virtual void registerWeakCellWithCallback(void**, WeakCallback) = 0; 378 virtual void registerWeakCellWithCallback(void**, WeakCallback) = 0;
379 379
380 private: 380 private:
381 static Visitor* fromHelper(VisitorHelper<Visitor>* helper) { return static_c ast<Visitor*>(helper); } 381 static Visitor* fromHelper(VisitorHelper<Visitor>* helper) { return static_c ast<Visitor*>(helper); }
382 382
383 const MarkingMode m_markingMode; 383 const MarkingMode m_markingMode;
384 bool m_isGlobalMarkingVisitor; 384 bool m_isGlobalMarkingVisitor;
385 }; 385 };
386 386
387 #if ENABLE(GC_PROFILING) 387 #if ENABLE(DETAILED_MEMORY_INFRA)
388 template<typename T> 388 template<typename T>
389 struct TypenameStringTrait { 389 struct TypenameStringTrait {
390 static const String get() 390 static const String get()
391 { 391 {
392 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( )); 392 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( ));
393 } 393 }
394 }; 394 };
395 #endif 395 #endif
396 396
397 } // namespace blink 397 } // namespace blink
398 398
399 #endif // Visitor_h 399 #endif // Visitor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698