diff options
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/plugin_main.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/plugin/plugin_main.cc b/chrome/plugin/plugin_main.cc index dee171c..9976770 100644 --- a/chrome/plugin/plugin_main.cc +++ b/chrome/plugin/plugin_main.cc @@ -68,13 +68,6 @@ bool IsPluginBuiltInFlash(const CommandLine& cmd_line) { return (path.BaseName() == FilePath(L"gcswf32.dll")); } -// Disables Input method editor services for the whole process. -void DisableIME() { - if (0 == ::GetSystemMetrics(SM_IMMENABLED)) - return; - ::ImmDisableIME(-1); -} - #endif // main() routine for running as the plugin process. @@ -140,7 +133,6 @@ int PluginMain(const MainFunctionParams& parameters) { // start elevated and it will call DelayedLowerToken(0) when it's ready. if (IsPluginBuiltInFlash(parsed_command_line)) { DVLOG(1) << "Sandboxing flash"; - DisableIME(); DelayedLowerToken(target_services); } else { target_services->LowerToken(); |