OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef SkThread_DEFINED | 8 #ifndef SkThread_DEFINED |
9 #define SkThread_DEFINED | 9 #define SkThread_DEFINED |
10 | 10 |
11 // TODO: delete this file, or maybe move the definition of SkThread here. | 11 // TODO: delete this file, or maybe move the definition of SkThread here. |
12 | 12 |
13 #include "SkAtomics.h" | 13 #include "SkAtomics.h" // IWYU pragma: export |
mtklein
2015/06/24 22:52:01
iwyu seems like a good way to clean up this file.
bungeman-skia
2015/06/25 14:45:06
On the one hand, yes, without these exports iwyu w
| |
14 #include "SkMutex.h" | 14 #include "SkMutex.h" // IWYU pragma: export |
15 | 15 |
16 #endif | 16 #endif |
OLD | NEW |