diff options
Diffstat (limited to 'cc/font_atlas.h')
-rw-r--r-- | cc/font_atlas.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cc/font_atlas.h b/cc/font_atlas.h index d18483f..1979dc2 100644 --- a/cc/font_atlas.h +++ b/cc/font_atlas.h @@ -9,6 +9,7 @@ #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" +#include "base/threading/thread_checker.h" #include "cc/cc_export.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/gfx/rect.h" @@ -61,6 +62,8 @@ private: int m_fontHeight; + base::ThreadChecker m_threadChecker; + DISALLOW_COPY_AND_ASSIGN(FontAtlas); }; |