aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkFlate.cpp6
-rw-r--r--src/core/SkFlate.h3
2 files changed, 0 insertions, 9 deletions
diff --git a/src/core/SkFlate.cpp b/src/core/SkFlate.cpp
index 09975c08f7..1d764e8400 100644
--- a/src/core/SkFlate.cpp
+++ b/src/core/SkFlate.cpp
@@ -11,8 +11,6 @@
#include "SkFlate.h"
#include "SkStream.h"
-#ifndef SK_NO_FLATE
-
namespace {
#ifdef ZLIB_INCLUDE
@@ -225,7 +223,3 @@ bool SkDeflateWStream::write(const void* void_buffer, size_t len) {
size_t SkDeflateWStream::bytesWritten() const {
return fImpl->fZStream.total_in + fImpl->fInBufferIndex;
}
-
-
-#endif // SK_NO_FLATE
-
diff --git a/src/core/SkFlate.h b/src/core/SkFlate.h
index 35f18499ef..0104c4514d 100644
--- a/src/core/SkFlate.h
+++ b/src/core/SkFlate.h
@@ -12,8 +12,6 @@
#include "SkTypes.h"
-#ifndef Sk_NO_FLATE
-
#include "SkStream.h"
class SkData;
@@ -74,5 +72,4 @@ private:
SkAutoTDelete<Impl> fImpl;
};
-#endif // SK_NO_FLATE
#endif // SkFlate_DEFINED