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

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

Issue 2070983002: Move headers in include/utils/win to src/utils/win. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Really rebase. Created 4 years, 6 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/utils/win/SkHRESULT.h ('k') | src/utils/win/SkTScopedComPtr.h » ('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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkIStream_DEFINED 10 #ifndef SkIStream_DEFINED
11 #define SkIStream_DEFINED 11 #define SkIStream_DEFINED
12 12
13 #include "SkTypes.h" 13 #include "SkTypes.h"
14 14
15 #ifdef SK_BUILD_FOR_WIN 15 #ifdef SK_BUILD_FOR_WIN
16 16
17 #include "../../private/SkLeanWindows.h" 17 #include "SkLeanWindows.h"
18 #include <ole2.h> 18 #include <ole2.h>
19 19
20 class SkStream; 20 class SkStream;
21 class SkWStream; 21 class SkWStream;
22 22
23 /** 23 /**
24 * A bare IStream implementation which properly reference counts 24 * A bare IStream implementation which properly reference counts
25 * but returns E_NOTIMPL for all ISequentialStream and IStream methods. 25 * but returns E_NOTIMPL for all ISequentialStream and IStream methods.
26 */ 26 */
27 class SkBaseIStream : public IStream { 27 class SkBaseIStream : public IStream {
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 , ULONG* pcbWritten); 126 , ULONG* pcbWritten);
127 127
128 virtual HRESULT STDMETHODCALLTYPE Commit(DWORD); 128 virtual HRESULT STDMETHODCALLTYPE Commit(DWORD);
129 129
130 virtual HRESULT STDMETHODCALLTYPE Stat(STATSTG* pStatstg 130 virtual HRESULT STDMETHODCALLTYPE Stat(STATSTG* pStatstg
131 , DWORD grfStatFlag); 131 , DWORD grfStatFlag);
132 }; 132 };
133 133
134 #endif // SK_BUILD_FOR_WIN 134 #endif // SK_BUILD_FOR_WIN
135 #endif // SkIStream_DEFINED 135 #endif // SkIStream_DEFINED
OLDNEW
« no previous file with comments | « src/utils/win/SkHRESULT.h ('k') | src/utils/win/SkTScopedComPtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698