summaryrefslogtreecommitdiffstats
path: root/base/win_util.cc
diff options
context:
space:
mode:
authorhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-14 08:31:51 +0000
committerhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-14 08:31:51 +0000
commit5dc0cc7bf9cb2f5e6b050933d1ebe7852b10baa0 (patch)
tree07f0620ffd0821ef0718d576edf5b415225ff76b /base/win_util.cc
parent67039c734e08c5c1b04f8bc1a98c81dc675bd7ab (diff)
downloadchromium_src-5dc0cc7bf9cb2f5e6b050933d1ebe7852b10baa0.zip
chromium_src-5dc0cc7bf9cb2f5e6b050933d1ebe7852b10baa0.tar.gz
chromium_src-5dc0cc7bf9cb2f5e6b050933d1ebe7852b10baa0.tar.bz2
Reverting 15832 since this test is finished.
BUG=11046 "Need to back out hbono's test fix" Review URL: http://codereview.chromium.org/112021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16047 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win_util.cc')
-rw-r--r--base/win_util.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/base/win_util.cc b/base/win_util.cc
index b71ac30..2f1ceb9 100644
--- a/base/win_util.cc
+++ b/base/win_util.cc
@@ -436,26 +436,6 @@ void NotifyHWNDDestruction(const tracked_objects::Location& from_here,
from_here));
}
-bool IMEAttach(HWND window, bool attach) {
- // To prevent a crash when calling ImmAssociateContextEx() function on a PC
- // which has a valid "imm32.dll" installed, we manually load "imm32.dll" and
- // call its "ImmAssociateContextEx() function.
- bool result = false;
- HMODULE imm32_module = LoadLibrary(L"imm32.dll");
- if (imm32_module) {
- typedef BOOL (WINAPI* Imm32_ImmAssociateContextEx)(HWND, HIMC, DWORD);
- Imm32_ImmAssociateContextEx imm_associate_context_ex =
- reinterpret_cast<Imm32_ImmAssociateContextEx>(
- GetProcAddress(imm32_module, "ImmAssociateContextEx"));
- if (imm_associate_context_ex) {
- result = !!imm_associate_context_ex(window, NULL,
- attach ? IACE_DEFAULT : 0);
- }
- FreeLibrary(imm32_module);
- }
- return result;
-}
-
} // namespace win_util
#ifdef _MSC_VER