Index: include/utils/win/SkAutoCoInitialize.h |
diff --git a/include/utils/win/SkAutoCoInitialize.h b/include/utils/win/SkAutoCoInitialize.h |
deleted file mode 100644 |
index 04709782ee6720c1bfe2380229487bae74019146..0000000000000000000000000000000000000000 |
--- a/include/utils/win/SkAutoCoInitialize.h |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-/* |
- * Copyright 2011 Google Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
-#ifndef SkAutoCo_DEFINED |
-#define SkAutoCo_DEFINED |
- |
-#include "SkTypes.h" |
- |
-#ifdef SK_BUILD_FOR_WIN |
- |
-#include "../../private/SkLeanWindows.h" |
- |
-/** |
- * An instance of this class initializes COM on creation |
- * and closes the COM library on destruction. |
- */ |
-class SkAutoCoInitialize : SkNoncopyable { |
-private: |
- HRESULT fHR; |
-public: |
- SkAutoCoInitialize(); |
- ~SkAutoCoInitialize(); |
- bool succeeded(); |
-}; |
- |
-#endif // SK_BUILD_FOR_WIN |
-#endif // SkAutoCo_DEFINED |