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

Side by Side Diff: Source/core/platform/ThreadGlobalData.cpp

Issue 15811002: Remove unused includes from core/platform .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 #include "config.h" 27 #include "config.h"
28 #include "core/platform/ThreadGlobalData.h" 28 #include "core/platform/ThreadGlobalData.h"
29 29
30 #include "core/dom/EventNames.h" 30 #include "core/dom/EventNames.h"
31 #include "core/inspector/InspectorCounters.h" 31 #include "core/inspector/InspectorCounters.h"
32 #include "core/loader/cache/CachedResourceRequestInitiators.h" 32 #include "core/loader/cache/CachedResourceRequestInitiators.h"
33 #include "core/platform/ThreadTimers.h" 33 #include "core/platform/ThreadTimers.h"
34 #include "wtf/MainThread.h" 34 #include "wtf/MainThread.h"
35 #include "wtf/ThreadSpecific.h" 35 #include "wtf/ThreadSpecific.h"
36 #include "wtf/Threading.h" 36 #include "wtf/Threading.h"
37 #include "wtf/UnusedParam.h"
38 #include "wtf/WTFThreadData.h" 37 #include "wtf/WTFThreadData.h"
39 #include "wtf/text/StringImpl.h" 38 #include "wtf/text/StringImpl.h"
40 39
41 using namespace WTF; 40 using namespace WTF;
42 41
43 namespace WebCore { 42 namespace WebCore {
44 43
45 ThreadSpecific<ThreadGlobalData>* ThreadGlobalData::staticData; 44 ThreadSpecific<ThreadGlobalData>* ThreadGlobalData::staticData;
46 45
47 ThreadGlobalData::ThreadGlobalData() 46 ThreadGlobalData::ThreadGlobalData()
(...skipping 18 matching lines...) Expand all
66 } 65 }
67 66
68 void ThreadGlobalData::destroy() 67 void ThreadGlobalData::destroy()
69 { 68 {
70 m_inspectorCounters.clear(); 69 m_inspectorCounters.clear();
71 m_eventNames.clear(); 70 m_eventNames.clear();
72 m_threadTimers.clear(); 71 m_threadTimers.clear();
73 } 72 }
74 73
75 } // namespace WebCore 74 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698