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); |
}; |