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

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

Issue 1714523006: Refactoring: Remove DETAILED_MEMORY_INFRA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove className() Created 4 years, 10 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
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 24 matching lines...) Expand all
35 #include "platform/heap/GarbageCollected.h" 35 #include "platform/heap/GarbageCollected.h"
36 #include "platform/heap/StackFrameDepth.h" 36 #include "platform/heap/StackFrameDepth.h"
37 #include "platform/heap/ThreadState.h" 37 #include "platform/heap/ThreadState.h"
38 #include "wtf/Allocator.h" 38 #include "wtf/Allocator.h"
39 #include "wtf/Assertions.h" 39 #include "wtf/Assertions.h"
40 #include "wtf/Atomics.h" 40 #include "wtf/Atomics.h"
41 #include "wtf/Deque.h" 41 #include "wtf/Deque.h"
42 #include "wtf/Forward.h" 42 #include "wtf/Forward.h"
43 #include "wtf/HashMap.h" 43 #include "wtf/HashMap.h"
44 #include "wtf/HashTraits.h" 44 #include "wtf/HashTraits.h"
45 #include "wtf/InstanceCounter.h" 45 #include "wtf/InstanceCounter.h"
sof 2016/02/19 12:00:49 This now no longer needed.
hajimehoshi 2016/02/19 12:15:45 Oh, thanks! Done
46 #include "wtf/TypeTraits.h" 46 #include "wtf/TypeTraits.h"
47 47
48 namespace blink { 48 namespace blink {
49 49
50 template<typename T> class GarbageCollected; 50 template<typename T> class GarbageCollected;
51 class HeapObjectHeader; 51 class HeapObjectHeader;
52 class InlinedGlobalMarkingVisitor; 52 class InlinedGlobalMarkingVisitor;
53 template<typename T> class TraceTrait; 53 template<typename T> class TraceTrait;
54 template<typename T> class TraceEagerlyTrait; 54 template<typename T> class TraceEagerlyTrait;
55 class ThreadState; 55 class ThreadState;
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 public: 393 public:
394 VisitorScope(ThreadState*, BlinkGC::GCType); 394 VisitorScope(ThreadState*, BlinkGC::GCType);
395 ~VisitorScope(); 395 ~VisitorScope();
396 Visitor* visitor() const { return m_visitor.get(); } 396 Visitor* visitor() const { return m_visitor.get(); }
397 397
398 private: 398 private:
399 ThreadState* m_state; 399 ThreadState* m_state;
400 OwnPtr<Visitor> m_visitor; 400 OwnPtr<Visitor> m_visitor;
401 }; 401 };
402 402
403 #if ENABLE(DETAILED_MEMORY_INFRA)
404 template<typename T>
405 struct TypenameStringTrait {
406 STATIC_ONLY(TypenameStringTrait);
407 static const String get()
408 {
409 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( ));
410 }
411 };
412 #endif
413
414 } // namespace blink 403 } // namespace blink
415 404
416 #endif // Visitor_h 405 #endif // Visitor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698