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

Side by Side Diff: ui/base/ime/input_method_base.h

Issue 826713002: [ChromeOS] Show autofill popup after keyboard (if any) is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable autofill popup waiting for keyboard when keyboard has been disabled. Created 5 years, 11 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 | « ui/base/ime/input_method.h ('k') | ui/base/ime/input_method_base.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_BASE_IME_INPUT_METHOD_BASE_H_ 5 #ifndef UI_BASE_IME_INPUT_METHOD_BASE_H_
6 #define UI_BASE_IME_INPUT_METHOD_BASE_H_ 6 #define UI_BASE_IME_INPUT_METHOD_BASE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 // If a derived class overrides this method, it should call parent's 46 // If a derived class overrides this method, it should call parent's
47 // implementation. 47 // implementation.
48 void OnTextInputTypeChanged(const TextInputClient* client) override; 48 void OnTextInputTypeChanged(const TextInputClient* client) override;
49 49
50 TextInputType GetTextInputType() const override; 50 TextInputType GetTextInputType() const override;
51 TextInputMode GetTextInputMode() const override; 51 TextInputMode GetTextInputMode() const override;
52 int GetTextInputFlags() const override; 52 int GetTextInputFlags() const override;
53 bool CanComposeInline() const override; 53 bool CanComposeInline() const override;
54 void ShowImeIfNeeded() override; 54 void ShowImeIfNeeded() override;
55 void SetSupportsOnScreenKeyboard(bool supported) override {}
56 bool SupportsOnScreenKeyboard() const override;
57 void NotifyKeyboardBoundsUnchanged() override;
55 58
56 void AddObserver(InputMethodObserver* observer) override; 59 void AddObserver(InputMethodObserver* observer) override;
57 void RemoveObserver(InputMethodObserver* observer) override; 60 void RemoveObserver(InputMethodObserver* observer) override;
58 61
59 protected: 62 protected:
60 virtual void OnWillChangeFocusedClient(TextInputClient* focused_before, 63 virtual void OnWillChangeFocusedClient(TextInputClient* focused_before,
61 TextInputClient* focused) {} 64 TextInputClient* focused) {}
62 virtual void OnDidChangeFocusedClient(TextInputClient* focused_before, 65 virtual void OnDidChangeFocusedClient(TextInputClient* focused_before,
63 TextInputClient* focused) {} 66 TextInputClient* focused) {}
64 67
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 ObserverList<InputMethodObserver> observer_list_; 116 ObserverList<InputMethodObserver> observer_list_;
114 117
115 bool system_toplevel_window_focused_; 118 bool system_toplevel_window_focused_;
116 119
117 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); 120 DISALLOW_COPY_AND_ASSIGN(InputMethodBase);
118 }; 121 };
119 122
120 } // namespace ui 123 } // namespace ui
121 124
122 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ 125 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_
OLDNEW
« no previous file with comments | « ui/base/ime/input_method.h ('k') | ui/base/ime/input_method_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698