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

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

Issue 1162943002: Replace more ObserverList with base::ObserverList. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@observer
Patch Set: Created 5 years, 6 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/chromeos/ime_keyboard.h ('k') | ui/base/ime/mock_input_method.h » ('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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 // Deferred callbacks for signalling TextInputClient about candidate window 103 // Deferred callbacks for signalling TextInputClient about candidate window
104 // appearance changes. 104 // appearance changes.
105 void CandidateWindowShownCallback(); 105 void CandidateWindowShownCallback();
106 void CandidateWindowUpdatedCallback(); 106 void CandidateWindowUpdatedCallback();
107 void CandidateWindowHiddenCallback(); 107 void CandidateWindowHiddenCallback();
108 108
109 internal::InputMethodDelegate* delegate_; 109 internal::InputMethodDelegate* delegate_;
110 TextInputClient* text_input_client_; 110 TextInputClient* text_input_client_;
111 111
112 ObserverList<InputMethodObserver> observer_list_; 112 base::ObserverList<InputMethodObserver> observer_list_;
113 113
114 bool system_toplevel_window_focused_; 114 bool system_toplevel_window_focused_;
115 115
116 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); 116 DISALLOW_COPY_AND_ASSIGN(InputMethodBase);
117 }; 117 };
118 118
119 } // namespace ui 119 } // namespace ui
120 120
121 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ 121 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_
OLDNEW
« no previous file with comments | « ui/base/ime/chromeos/ime_keyboard.h ('k') | ui/base/ime/mock_input_method.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698