blob: e7e3b4aca9a7466fbd99b61d4996d0a6c140b9bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_WIN_SCOPED_COM_INITIALIZER_H_
#define BASE_WIN_SCOPED_COM_INITIALIZER_H_
#pragma once
#include "base/basictypes.h"
#include "build/build_config.h"
#if defined(OS_WIN)
#include <objbase.h>
namespace base {
namespace win {
// Initializes COM in the constructor (STA), and uninitializes COM in the
// destructor.
class ScopedCOMInitializer {
public:
ScopedCOMInitializer() : hr_(CoInitialize(NULL)) {
}
ScopedCOMInitializer::~ScopedCOMInitializer() {
if (SUCCEEDED(hr_))
CoUninitialize();
}
private:
HRESULT hr_;
DISALLOW_COPY_AND_ASSIGN(ScopedCOMInitializer);
};
} // namespace win
} // namespace base
#else
namespace base {
namespace win {
// Do-nothing class for other platforms.
class ScopedCOMInitializer {
public:
ScopedCOMInitializer() {}
~ScopedCOMInitializer() {}
private:
DISALLOW_COPY_AND_ASSIGN(ScopedCOMInitializer);
};
} // namespace win
} // namespace base
#endif
#endif // BASE_WIN_SCOPED_COM_INITIALIZER_H_
|