| Index: chrome/browser/ui/libgtk2ui/gtk2_ui.cc
|
| diff --git a/chrome/browser/ui/libgtk2ui/gtk2_ui.cc b/chrome/browser/ui/libgtk2ui/gtk2_ui.cc
|
| index 2f7f2cd93cfb7e6629ebaa96c8f8b5012a4cea20..3ccf497bcb5b6947bee94a3889d29ac5fa8fa296 100644
|
| --- a/chrome/browser/ui/libgtk2ui/gtk2_ui.cc
|
| +++ b/chrome/browser/ui/libgtk2ui/gtk2_ui.cc
|
| @@ -684,9 +684,10 @@ void Gtk2UI::SetNonClientMiddleClickAction(NonClientMiddleClickAction action) {
|
| }
|
|
|
| scoped_ptr<ui::LinuxInputMethodContext> Gtk2UI::CreateInputMethodContext(
|
| - ui::LinuxInputMethodContextDelegate* delegate) const {
|
| + ui::LinuxInputMethodContextDelegate* delegate,
|
| + bool is_simple) const {
|
| return scoped_ptr<ui::LinuxInputMethodContext>(
|
| - new X11InputMethodContextImplGtk2(delegate));
|
| + new X11InputMethodContextImplGtk2(delegate, is_simple));
|
| }
|
|
|
| gfx::FontRenderParams Gtk2UI::GetDefaultFontRenderParams() const {
|
|
|