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

Side by Side Diff: src/core/SkMiniData.h

Issue 617003004: Archive more dead code. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove header from .gypi Created 6 years, 2 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 | « src/core/SkMath.cpp ('k') | src/core/SkMiniData.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SkMiniData_DEFINED
2 #define SkMiniData_DEFINED
3
4 // A class that can store any immutable byte string,
5 // but optimized to store <=7 bytes.
6
7 #include "SkTypes.h"
8
9 class SkMiniData {
10 public:
11 SkMiniData(const void*, size_t);
12 SkMiniData(const SkMiniData&);
13 ~SkMiniData();
14
15 const void* data() const;
16 size_t len() const;
17
18 private:
19 SkMiniData& operator=(const SkMiniData&);
20
21 const uint64_t fRep;
22 };
23
24 #endif//SkMiniData_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkMath.cpp ('k') | src/core/SkMiniData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698