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

Side by Side Diff: src/utils/SkThreadUtils_win.h

Issue 2041943002: SkLeanWindows.h: #include "Windows.h" fewer places (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-06-07 (Tuesday) 11:28:42 EDT 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/SkTextureCompressor_ASTC.cpp ('k') | src/utils/win/SkAutoCoInitialize.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 SkThreadUtils_WinData_DEFINED 8 #ifndef SkThreadUtils_WinData_DEFINED
9 #define SkThreadUtils_WinData_DEFINED 9 #define SkThreadUtils_WinData_DEFINED
10 10
11 #include "SkTypes.h" 11 #include "SkLeanWindows.h"
12
13 #include "SkThreadUtils.h" 12 #include "SkThreadUtils.h"
14 13
15 class SkThread_WinData : SkNoncopyable { 14 class SkThread_WinData : SkNoncopyable {
16 public: 15 public:
17 SkThread_WinData(SkThread::entryPointProc entryPoint, void* data); 16 SkThread_WinData(SkThread::entryPointProc entryPoint, void* data);
18 ~SkThread_WinData(); 17 ~SkThread_WinData();
19 HANDLE fHandle; 18 HANDLE fHandle;
20 HANDLE fCancelEvent; 19 HANDLE fCancelEvent;
21 20
22 LPVOID fParam; 21 LPVOID fParam;
23 DWORD fThreadId; 22 DWORD fThreadId;
24 SkThread::entryPointProc fEntryPoint; 23 SkThread::entryPointProc fEntryPoint;
25 bool fStarted; 24 bool fStarted;
26 }; 25 };
27 26
28 #endif 27 #endif
OLDNEW
« no previous file with comments | « src/utils/SkTextureCompressor_ASTC.cpp ('k') | src/utils/win/SkAutoCoInitialize.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698