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

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

Issue 1460523004: Avoid unnecessary wtf/text/WTFString.h includes in platform/heap/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 25 matching lines...) Expand all
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/Assertions.h" 38 #include "wtf/Assertions.h"
39 #include "wtf/Atomics.h" 39 #include "wtf/Atomics.h"
40 #include "wtf/Deque.h" 40 #include "wtf/Deque.h"
41 #include "wtf/Forward.h" 41 #include "wtf/Forward.h"
42 #include "wtf/HashMap.h" 42 #include "wtf/HashMap.h"
43 #include "wtf/HashTraits.h" 43 #include "wtf/HashTraits.h"
44 #include "wtf/InstanceCounter.h" 44 #include "wtf/InstanceCounter.h"
45 #include "wtf/TypeTraits.h" 45 #include "wtf/TypeTraits.h"
46 #include "wtf/text/WTFString.h"
47 46
48 namespace blink { 47 namespace blink {
49 48
50 template<typename T> class GarbageCollected; 49 template<typename T> class GarbageCollected;
51 class HeapObjectHeader; 50 class HeapObjectHeader;
52 class InlinedGlobalMarkingVisitor; 51 class InlinedGlobalMarkingVisitor;
53 template<typename T> class TraceTrait; 52 template<typename T> class TraceTrait;
54 template<typename T> class TraceEagerlyTrait; 53 template<typename T> class TraceEagerlyTrait;
55 class Visitor; 54 class Visitor;
56 55
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 static const String get() 389 static const String get()
391 { 390 {
392 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( )); 391 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( ));
393 } 392 }
394 }; 393 };
395 #endif 394 #endif
396 395
397 } // namespace blink 396 } // namespace blink
398 397
399 #endif // Visitor_h 398 #endif // Visitor_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698