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

Side by Side Diff: src/utils/win/SkDWriteFontFileStream.h

Issue 940563002: Update DirectWrite streams to SkStreamAsset. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 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/ports/SkFontMgr_win_dw.cpp ('k') | src/utils/win/SkDWriteFontFileStream.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 2012 Google Inc. 2 * Copyright 2012 Google Inc.
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 #ifndef SkDWriteFontFileStream_DEFINED 8 #ifndef SkDWriteFontFileStream_DEFINED
9 #define SkDWriteFontFileStream_DEFINED 9 #define SkDWriteFontFileStream_DEFINED
10 10
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 virtual HRESULT STDMETHODCALLTYPE ReadFileFragment( 58 virtual HRESULT STDMETHODCALLTYPE ReadFileFragment(
59 void const** fragmentStart, 59 void const** fragmentStart,
60 UINT64 fileOffset, 60 UINT64 fileOffset,
61 UINT64 fragmentSize, 61 UINT64 fragmentSize,
62 void** fragmentContext); 62 void** fragmentContext);
63 63
64 virtual void STDMETHODCALLTYPE ReleaseFileFragment(void* fragmentContext); 64 virtual void STDMETHODCALLTYPE ReleaseFileFragment(void* fragmentContext);
65 virtual HRESULT STDMETHODCALLTYPE GetFileSize(UINT64* fileSize); 65 virtual HRESULT STDMETHODCALLTYPE GetFileSize(UINT64* fileSize);
66 virtual HRESULT STDMETHODCALLTYPE GetLastWriteTime(UINT64* lastWriteTime); 66 virtual HRESULT STDMETHODCALLTYPE GetLastWriteTime(UINT64* lastWriteTime);
67 67
68 static HRESULT Create(SkStream* stream, SkDWriteFontFileStreamWrapper** stre amFontFileStream); 68 static HRESULT Create(SkStreamAsset* stream,
69 SkDWriteFontFileStreamWrapper** streamFontFileStream);
69 70
70 private: 71 private:
71 explicit SkDWriteFontFileStreamWrapper(SkStream* stream); 72 explicit SkDWriteFontFileStreamWrapper(SkStreamAsset* stream);
72 virtual ~SkDWriteFontFileStreamWrapper() { } 73 virtual ~SkDWriteFontFileStreamWrapper() { }
73 74
74 ULONG fRefCount; 75 ULONG fRefCount;
75 SkAutoTDelete<SkStream> fStream; 76 SkAutoTDelete<SkStreamAsset> fStream;
76 SkMutex fStreamMutex; 77 SkMutex fStreamMutex;
77 }; 78 };
78 #endif 79 #endif
OLDNEW
« no previous file with comments | « src/ports/SkFontMgr_win_dw.cpp ('k') | src/utils/win/SkDWriteFontFileStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698