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

Side by Side Diff: third_party/WebKit/Source/platform/heap/ThreadState.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
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 26 matching lines...) Expand all
37 #include "platform/heap/ThreadingTraits.h" 37 #include "platform/heap/ThreadingTraits.h"
38 #include "public/platform/WebThread.h" 38 #include "public/platform/WebThread.h"
39 #include "wtf/AddressSanitizer.h" 39 #include "wtf/AddressSanitizer.h"
40 #include "wtf/Forward.h" 40 #include "wtf/Forward.h"
41 #include "wtf/HashMap.h" 41 #include "wtf/HashMap.h"
42 #include "wtf/HashSet.h" 42 #include "wtf/HashSet.h"
43 #include "wtf/PassOwnPtr.h" 43 #include "wtf/PassOwnPtr.h"
44 #include "wtf/ThreadSpecific.h" 44 #include "wtf/ThreadSpecific.h"
45 #include "wtf/Threading.h" 45 #include "wtf/Threading.h"
46 #include "wtf/ThreadingPrimitives.h" 46 #include "wtf/ThreadingPrimitives.h"
47 #include "wtf/text/WTFString.h"
48 47
49 namespace v8 { 48 namespace v8 {
50 class Isolate; 49 class Isolate;
51 }; 50 };
52 51
53 namespace blink { 52 namespace blink {
54 53
55 class BasePage; 54 class BasePage;
56 class CallbackStack; 55 class CallbackStack;
57 class CrossThreadPersistentRegion; 56 class CrossThreadPersistentRegion;
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 }; 673 };
675 674
676 template<> class ThreadStateFor<AnyThread> { 675 template<> class ThreadStateFor<AnyThread> {
677 public: 676 public:
678 static ThreadState* state() { return ThreadState::current(); } 677 static ThreadState* state() { return ThreadState::current(); }
679 }; 678 };
680 679
681 } // namespace blink 680 } // namespace blink
682 681
683 #endif // ThreadState_h 682 #endif // ThreadState_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/exported/WebRTCVoidRequest.cpp ('k') | third_party/WebKit/Source/platform/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698