OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "content/browser/renderer_host/text_input_manager.h" | |
6 | |
7 #include "content/browser/renderer_host/render_widget_host_view_base.h" | |
8 | |
9 namespace content { | |
10 | |
11 namespace { | |
12 | |
13 bool AreDifferentTextInputStates(const content::TextInputState& old_state, | |
14 const content::TextInputState& new_state) { | |
15 #if defined(USE_AURA) | |
16 return old_state.type != new_state.type || old_state.mode != new_state.mode || | |
17 old_state.flags != new_state.flags || | |
18 old_state.can_compose_inline != new_state.can_compose_inline; | |
19 #else | |
20 // TODO(ekaramad): Implement this logic for other platforms. | |
21 NOTREACHED(); | |
22 #endif | |
23 } | |
24 | |
25 } // namespace | |
26 | |
27 TextInputManager::TextInputManager() : active_view_(nullptr) {} | |
28 | |
29 TextInputManager::~TextInputManager() { | |
30 // If there is an active view, we should unregister it first so that the | |
31 // the tab's top-level RWHV will be notified about |TextInputState.type| | |
32 // resetting to none (i.e., we do not have an active RWHV anymore). | |
33 if (active_view_) | |
34 Unregister(active_view_); | |
35 | |
36 // Unregister all the remaining views. | |
37 std::vector<RenderWidgetHostViewBase*> views; | |
38 for (auto pair : text_input_state_map_) | |
39 views.push_back(pair.first); | |
40 | |
41 for (auto view : views) | |
42 Unregister(view); | |
43 } | |
44 | |
45 const TextInputState* TextInputManager::GetTextInputState() { | |
46 return !!active_view_ ? &text_input_state_map_[active_view_] : nullptr; | |
47 } | |
48 | |
49 RenderWidgetHostViewBase* TextInputManager::GetActiveView() const { | |
50 return active_view_; | |
51 } | |
52 | |
53 void TextInputManager::UpdateTextInputState( | |
54 RenderWidgetHostViewBase* view, | |
55 const TextInputState& text_input_state) { | |
56 DCHECK(IsRegistered(view)); | |
57 | |
58 // Since |view| is registgered, we already have a previous value for its | |
Charlie Reis
2016/06/02 22:03:29
nit: registered
| |
59 // TextInputState. | |
60 bool changed = AreDifferentTextInputStates(text_input_state_map_[view], | |
61 text_input_state); | |
62 | |
63 text_input_state_map_[view] = text_input_state; | |
64 | |
65 // |active_view_| is only updated when the state for |view| is not none. | |
66 if (text_input_state.type != ui::TEXT_INPUT_TYPE_NONE) | |
67 active_view_ = view; | |
68 | |
69 // If the state for |active_view_| is none, then we no longer have an | |
70 // |active_view_|. | |
71 if (active_view_ == view && text_input_state.type == ui::TEXT_INPUT_TYPE_NONE) | |
72 active_view_ = nullptr; | |
73 | |
74 NotifyObserversAboutInputStateUpdate(view, changed); | |
75 } | |
76 | |
77 void TextInputManager::Register(RenderWidgetHostViewBase* view) { | |
78 DCHECK(!IsRegistered(view)); | |
79 | |
80 text_input_state_map_[view] = TextInputState(); | |
81 } | |
82 | |
83 void TextInputManager::Unregister(RenderWidgetHostViewBase* view) { | |
84 DCHECK(IsRegistered(view)); | |
85 | |
86 text_input_state_map_.erase(view); | |
87 if (active_view_ == view) { | |
88 active_view_ = nullptr; | |
89 NotifyObserversAboutInputStateUpdate(view, true); | |
90 } | |
91 view->DidUnregisterFromTextInputManager(this); | |
92 } | |
93 | |
94 bool TextInputManager::IsRegistered(RenderWidgetHostViewBase* view) const { | |
95 return text_input_state_map_.count(view) == 1; | |
96 } | |
97 | |
98 void TextInputManager::AddObserver(Observer* observer) { | |
99 observer_list_.AddObserver(observer); | |
100 } | |
101 | |
102 void TextInputManager::RemoveObserver(Observer* observer) { | |
103 observer_list_.RemoveObserver(observer); | |
104 } | |
105 | |
106 void TextInputManager::NotifyObserversAboutInputStateUpdate( | |
107 RenderWidgetHostViewBase* updated_view, | |
108 bool did_update_state) { | |
109 FOR_EACH_OBSERVER( | |
110 Observer, observer_list_, | |
111 OnUpdateTextInputStateCalled(this, updated_view, did_update_state)); | |
112 } | |
113 | |
114 } // namespace content | |
OLD | NEW |