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

Side by Side Diff: ash/host/ash_window_tree_host_x11.h

Issue 1257603006: Refactoring for the InputMethod & InputMethodDelegate interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Sadrul's comment. Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « ash/host/ash_window_tree_host_win.cc ('k') | ash/host/ash_window_tree_host_x11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ 5 #ifndef ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_
6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ 6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/host/ash_window_tree_host.h" 9 #include "ash/host/ash_window_tree_host.h"
10 #include "ash/host/transformer_helper.h" 10 #include "ash/host/transformer_helper.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // aura::WindowTreeHostX11: 45 // aura::WindowTreeHostX11:
46 void OnConfigureNotify() override; 46 void OnConfigureNotify() override;
47 bool CanDispatchEvent(const ui::PlatformEvent& event) override; 47 bool CanDispatchEvent(const ui::PlatformEvent& event) override;
48 void TranslateAndDispatchLocatedEvent(ui::LocatedEvent* event) override; 48 void TranslateAndDispatchLocatedEvent(ui::LocatedEvent* event) override;
49 49
50 // EnvObserver overrides. 50 // EnvObserver overrides.
51 void OnWindowInitialized(aura::Window* window) override; 51 void OnWindowInitialized(aura::Window* window) override;
52 void OnHostInitialized(aura::WindowTreeHost* host) override; 52 void OnHostInitialized(aura::WindowTreeHost* host) override;
53 53
54 // ui::internal::InputMethodDelegate: 54 // ui::internal::InputMethodDelegate:
55 bool DispatchKeyEventPostIME(const ui::KeyEvent& event) override; 55 ui::EventDispatchDetails DispatchKeyEventPostIME(
56 ui::KeyEvent* event) override;
56 57
57 #if defined(OS_CHROMEOS) 58 #if defined(OS_CHROMEOS)
58 // Set the CrOS touchpad "tap paused" property. It is used to temporarily 59 // Set the CrOS touchpad "tap paused" property. It is used to temporarily
59 // turn off the Tap-to-click feature when the mouse pointer is invisible. 60 // turn off the Tap-to-click feature when the mouse pointer is invisible.
60 void SetCrOSTapPaused(bool state); 61 void SetCrOSTapPaused(bool state);
61 #endif 62 #endif
62 63
63 scoped_ptr<XID[]> pointer_barriers_; 64 scoped_ptr<XID[]> pointer_barriers_;
64 65
65 TransformerHelper transformer_helper_; 66 TransformerHelper transformer_helper_;
66 67
67 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostX11); 68 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostX11);
68 }; 69 };
69 70
70 } // namespace ash 71 } // namespace ash
71 72
72 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_ 73 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_X11_H_
OLDNEW
« no previous file with comments | « ash/host/ash_window_tree_host_win.cc ('k') | ash/host/ash_window_tree_host_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698