| Index: chrome/browser/chromeos/input_method/candidate_view.h
|
| diff --git a/chrome/browser/chromeos/input_method/candidate_view.h b/chrome/browser/chromeos/input_method/candidate_view.h
|
| index 823bc6522309e0431ec7c5dafe9684eeb9c870af..823f6492fedd8a155e0ba18b0283f06b4b135ae6 100644
|
| --- a/chrome/browser/chromeos/input_method/candidate_view.h
|
| +++ b/chrome/browser/chromeos/input_method/candidate_view.h
|
| @@ -6,7 +6,7 @@
|
| #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_
|
|
|
| #include "base/gtest_prod_util.h"
|
| -#include "chromeos/dbus/ibus/ibus_lookup_table.h"
|
| +#include "chromeos/ime/candidate_window.h"
|
| #include "ui/views/controls/label.h"
|
| #include "ui/views/view.h"
|
|
|
| @@ -20,7 +20,7 @@ class CandidateView : public views::View {
|
| public:
|
| CandidateView(CandidateWindowView* parent_candidate_window,
|
| int index_in_page,
|
| - IBusLookupTable::Orientation orientation);
|
| + CandidateWindow::Orientation orientation);
|
| virtual ~CandidateView() {}
|
| // Initializes the candidate view with the given column widths.
|
| // A width of 0 means that the column is resizable.
|
| @@ -74,7 +74,7 @@ class CandidateView : public views::View {
|
| int index_in_page_;
|
|
|
| // The orientation of the candidate view.
|
| - IBusLookupTable::Orientation orientation_;
|
| + CandidateWindow::Orientation orientation_;
|
|
|
| // The parent candidate window that contains this view.
|
| CandidateWindowView* parent_candidate_window_;
|
|
|