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

Side by Side Diff: src/pdf/SkDeflate.h

Issue 2110033002: Remove unnecessary includes in src/pdf/ (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: fix order Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/pdf/SkDeflate.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010 The Android Open Source Project 2 * Copyright 2010 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 8
9 #ifndef SkFlate_DEFINED 9 #ifndef SkFlate_DEFINED
10 #define SkFlate_DEFINED 10 #define SkFlate_DEFINED
11 11
12 #include "SkTypes.h"
13
14 #include "SkStream.h" 12 #include "SkStream.h"
15 13
16 /** 14 /**
17 * Wrap a stream in this class to compress the information written to 15 * Wrap a stream in this class to compress the information written to
18 * this stream using the Deflate algorithm. 16 * this stream using the Deflate algorithm.
19 * 17 *
20 * See http://en.wikipedia.org/wiki/DEFLATE 18 * See http://en.wikipedia.org/wiki/DEFLATE
21 */ 19 */
22 class SkDeflateWStream final : public SkWStream { 20 class SkDeflateWStream final : public SkWStream {
23 public: 21 public:
(...skipping 22 matching lines...) Expand all
46 // The SkWStream interface: 44 // The SkWStream interface:
47 bool write(const void*, size_t) override; 45 bool write(const void*, size_t) override;
48 size_t bytesWritten() const override; 46 size_t bytesWritten() const override;
49 47
50 private: 48 private:
51 struct Impl; 49 struct Impl;
52 std::unique_ptr<Impl> fImpl; 50 std::unique_ptr<Impl> fImpl;
53 }; 51 };
54 52
55 #endif // SkFlate_DEFINED 53 #endif // SkFlate_DEFINED
OLDNEW
« no previous file with comments | « no previous file | src/pdf/SkDeflate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698