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

Unified Diff: include/core/SkAtomics.h

Issue 1207893002: Clean up a few includes, introduce iwyu. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Just a little more cleanup. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | include/core/SkMutex.h » ('j') | include/core/SkRefCnt.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkAtomics.h
diff --git a/include/core/SkAtomics.h b/include/core/SkAtomics.h
index be94164227b789c43899cabd38c94d6fe8e3e050..7036e0035c243b9cf9ba9651fbc31384577e670f 100644
--- a/include/core/SkAtomics.h
+++ b/include/core/SkAtomics.h
@@ -68,11 +68,11 @@ private:
};
#if defined(_MSC_VER)
- #include "../ports/SkAtomics_std.h"
+ #include "../ports/SkAtomics_std.h" // IWYU pragma: export
#elif !defined(SK_BUILD_FOR_IOS) && defined(__ATOMIC_RELAXED)
- #include "../ports/SkAtomics_atomic.h"
+ #include "../ports/SkAtomics_atomic.h" // IWYU pragma: export
#else
- #include "../ports/SkAtomics_sync.h"
+ #include "../ports/SkAtomics_sync.h" // IWYU pragma: export
#endif
// From here down we have shims for our old atomics API, to be weaned off of.
« no previous file with comments | « no previous file | include/core/SkMutex.h » ('j') | include/core/SkRefCnt.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698