OLD | NEW |
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 Loading... |
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 |
OLD | NEW |