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

Side by Side Diff: include/utils/win/SkAutoCoInitialize.h

Issue 1488813002: CMake, include/: changes to make fiddle 2.0 better (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: whitespace change for reed@ Created 5 years 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 | « include/utils/mac/SkCGUtils.h ('k') | include/utils/win/SkHRESULT.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 * Copyright 2011 Google Inc. 2 * Copyright 2011 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 SkAutoCo_DEFINED 8 #ifndef SkAutoCo_DEFINED
9 #define SkAutoCo_DEFINED 9 #define SkAutoCo_DEFINED
10 10
11 #include "SkTypes.h" 11 #include "SkTypes.h"
12 12
13 #ifdef SK_BUILD_FOR_WIN
14
13 /** 15 /**
14 * An instance of this class initializes COM on creation 16 * An instance of this class initializes COM on creation
15 * and closes the COM library on destruction. 17 * and closes the COM library on destruction.
16 */ 18 */
17 class SkAutoCoInitialize : SkNoncopyable { 19 class SkAutoCoInitialize : SkNoncopyable {
18 private: 20 private:
19 HRESULT fHR; 21 HRESULT fHR;
20 public: 22 public:
21 SkAutoCoInitialize(); 23 SkAutoCoInitialize();
22 ~SkAutoCoInitialize(); 24 ~SkAutoCoInitialize();
23 bool succeeded(); 25 bool succeeded();
24 }; 26 };
25 27
26 #endif 28 #endif // SK_BUILD_FOR_WIN
29 #endif // SkAutoCo_DEFINED
OLDNEW
« no previous file with comments | « include/utils/mac/SkCGUtils.h ('k') | include/utils/win/SkHRESULT.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698