blob: 8c4d34fee916f4068bbc8fa94dce4071dab4464d (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// Copyright 2013 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.
#include "ui/base/ime/input_method_initializer.h"
#include "ui/base/ime/input_method_factory.h"
#if defined(OS_CHROMEOS)
#include "base/chromeos/chromeos_version.h"
#include "base/logging.h"
#include "chromeos/dbus/dbus_thread_manager.h"
#include "chromeos/ime/ibus_bridge.h"
#elif defined(OS_WIN)
#include "base/win/metro.h"
#include "ui/base/ime/win/tsf_bridge.h"
#endif
#if defined(OS_CHROMEOS)
namespace {
bool dbus_thread_manager_was_initialized = false;
}
#endif // OS_CHROMEOS
namespace ui {
void InitializeInputMethod() {
#if defined(OS_CHROMEOS)
chromeos::IBusBridge::Initialize();
#elif defined(OS_WIN)
if (base::win::IsTSFAwareRequired())
ui::TSFBridge::Initialize();
#endif
}
void ShutdownInputMethod() {
#if defined(OS_CHROMEOS)
chromeos::IBusBridge::Shutdown();
#elif defined(OS_WIN)
ui::internal::DestroySharedInputMethod();
if (base::win::IsTSFAwareRequired())
ui::TSFBridge::Shutdown();
#endif
}
void InitializeInputMethodForTesting() {
#if defined(OS_CHROMEOS)
chromeos::IBusBridge::Initialize();
// TODO(nona): Remove DBusThreadManager initialize.
if (!chromeos::DBusThreadManager::IsInitialized()) {
chromeos::DBusThreadManager::InitializeWithStub();
dbus_thread_manager_was_initialized = true;
}
#elif defined(OS_WIN)
if (base::win::IsTSFAwareRequired()) {
// Make sure COM is initialized because TSF depends on COM.
CoInitialize(NULL);
ui::TSFBridge::Initialize();
}
#endif
}
void ShutdownInputMethodForTesting() {
#if defined(OS_CHROMEOS)
chromeos::IBusBridge::Shutdown();
// TODO(nona): Remove DBusThreadManager finalize.
if (dbus_thread_manager_was_initialized) {
chromeos::DBusThreadManager::Shutdown();
dbus_thread_manager_was_initialized = false;
}
#elif defined(OS_WIN)
ui::internal::DestroySharedInputMethod();
if (base::win::IsTSFAwareRequired()) {
ui::TSFBridge::Shutdown();
CoUninitialize();
}
#endif
}
} // namespace ui
|