Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: chrome/browser/ui/libgtk2ui/gtk2_ui.cc

Issue 1068093002: Refactoring for InputMethodAuraLinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed interactive_ui_tests failure. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 a57b59fb7905762f861446e6587b52f536adf2dc..652e04e719525343d02f82ecd74110bcc623c0b5 100644
--- a/chrome/browser/ui/libgtk2ui/gtk2_ui.cc
+++ b/chrome/browser/ui/libgtk2ui/gtk2_ui.cc
@@ -688,9 +688,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 {
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_ui.h ('k') | chrome/browser/ui/libgtk2ui/x11_input_method_context_impl_gtk2.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698