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

Unified Diff: trunk/src/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h

Issue 130833002: Revert 243777 "Moves CandidateWindow model to ui/base/ime." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h
===================================================================
--- trunk/src/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h (revision 243783)
+++ trunk/src/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h (working copy)
@@ -18,13 +18,10 @@
class Widget;
} // namespace views
-namespace ui {
-class CandidateWindow;
-} // namespace ui
-
namespace chromeos {
namespace input_method {
+class CandidateWindow;
class DelayableWidget;
class ModeIndicatorController;
@@ -51,7 +48,7 @@
// |has_highlighted| to true if infolist_entries contains highlighted entry.
// TODO(mukai): move this method (and tests) to the new InfolistEntry model.
static void ConvertLookupTableToInfolistEntry(
- const ui::CandidateWindow& candidate_window,
+ const CandidateWindow& candidate_window,
std::vector<InfolistEntry>* infolist_entries,
bool* has_highlighted);
@@ -65,9 +62,8 @@
// IBusPanelCandidateWindowHandlerInterface implementation.
virtual void SetCursorBounds(const gfx::Rect& cursor_bounds,
const gfx::Rect& composition_head) OVERRIDE;
- virtual void UpdateLookupTable(
- const ui::CandidateWindow& candidate_window,
- bool visible) OVERRIDE;
+ virtual void UpdateLookupTable(const CandidateWindow& candidate_window,
+ bool visible) OVERRIDE;
virtual void UpdatePreeditText(const std::string& utf8_text,
unsigned int cursor, bool visible) OVERRIDE;
virtual void FocusStateChanged(bool is_focused) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698