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

Unified Diff: chrome/browser/chromeos/input_method/candidate_window_view.h

Issue 8505051: Support mozc suggest window on ChromeOS. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Apply latest mozc repository. Created 9 years, 1 month 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: chrome/browser/chromeos/input_method/candidate_window_view.h
diff --git a/chrome/browser/chromeos/input_method/candidate_window_view.h b/chrome/browser/chromeos/input_method/candidate_window_view.h
index 2ceaa863396c7866a2b7eed006cb059b79e07310..f21723eb85b499ea0bd33c81b27dcb8370f6c50e 100644
--- a/chrome/browser/chromeos/input_method/candidate_window_view.h
+++ b/chrome/browser/chromeos/input_method/candidate_window_view.h
@@ -177,6 +177,16 @@ class CandidateWindowView : public views::View {
// The last cursor location.
gfx::Rect cursor_location_;
+ // This location is used by mozc window rendereing, The mozc-engine has two
+ // types of lookup-table, suggestion window and candidate window(this is
+ // ordinal look-up table). The location of these two windows are different
+ // and which is managed by mozc-engine now.
+ gfx::Rect window_location_for_mozc_engine_;
Yusuke Sato 2011/11/30 13:38:20 should we explicitly use the term mozc here? can't
Seigo Nonaka 2011/12/01 07:10:01 Done.
+
+ // If rendering operation comes from mozc-engine, this value becomes true.
+ // Otherwise this value becomes false.
+ bool is_mozc_window_;
Yusuke Sato 2011/11/30 13:38:20 'mozc window' is too ambiguous to me. I prefer som
Seigo Nonaka 2011/12/01 07:10:01 Done.
+
DISALLOW_COPY_AND_ASSIGN(CandidateWindowView);
};

Powered by Google App Engine
This is Rietveld 408576698