aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/codec
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2015-08-19 11:56:48 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-19 11:56:48 -0700
commitf3c15b7cfc4eed2528f7db87ea6c1444b55ee856 (patch)
tree00516f1f5ecd2b72ef8d8cd6643055a5d9db8f2c /include/codec
parent9be0b002caaf4f44e04873351f957c3e97922457 (diff)
Move SkTemplates.h to private.
SkTemplates.h contains a number of Skia specific utilities which are not designed for external use. In addition to reducing the external support burden, this will allow Skia to freely refactor this file. Review URL: https://codereview.chromium.org/1272293004
Diffstat (limited to 'include/codec')
-rw-r--r--include/codec/SkCodec.h2
-rw-r--r--include/codec/SkScanlineDecoder.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/codec/SkCodec.h b/include/codec/SkCodec.h
index ae9524b8b7..bdfa2326fb 100644
--- a/include/codec/SkCodec.h
+++ b/include/codec/SkCodec.h
@@ -8,12 +8,12 @@
#ifndef SkCodec_DEFINED
#define SkCodec_DEFINED
+#include "../private/SkTemplates.h"
#include "SkColor.h"
#include "SkEncodedFormat.h"
#include "SkImageInfo.h"
#include "SkSize.h"
#include "SkStream.h"
-#include "SkTemplates.h"
#include "SkTypes.h"
class SkData;
diff --git a/include/codec/SkScanlineDecoder.h b/include/codec/SkScanlineDecoder.h
index c547f6701f..7946973981 100644
--- a/include/codec/SkScanlineDecoder.h
+++ b/include/codec/SkScanlineDecoder.h
@@ -8,10 +8,10 @@
#ifndef SkScanlineDecoder_DEFINED
#define SkScanlineDecoder_DEFINED
-#include "SkTypes.h"
+#include "../private/SkTemplates.h"
#include "SkCodec.h"
-#include "SkTemplates.h"
#include "SkImageInfo.h"
+#include "SkTypes.h"
class SkScanlineDecoder : public SkNoncopyable {
public: