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

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

Issue 11783053: Clean Up: Remove ibus namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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: 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 5faf1244829546950de608c39cbfde03ebcb9242..b4c44376fca3a2ac47b2c45286788691388fec74 100644
--- a/chrome/browser/chromeos/input_method/candidate_window_view.h
+++ b/chrome/browser/chromeos/input_method/candidate_window_view.h
@@ -97,12 +97,12 @@ class CandidateWindowView : public views::View {
// don't have to update candidate views. This happens when the user just
// moves the cursor in the same page in the candidate window.
static bool ShouldUpdateCandidateViews(
- const ibus::IBusLookupTable& old_table,
- const ibus::IBusLookupTable& new_table);
+ const IBusLookupTable& old_table,
+ const IBusLookupTable& new_table);
// Updates candidates of the candidate window from |lookup_table|.
// Candidates are arranged per |orientation|.
- void UpdateCandidates(const ibus::IBusLookupTable& lookup_table);
+ void UpdateCandidates(const IBusLookupTable& lookup_table);
// Resizes and moves the parent frame. The two actions should be
// performed consecutively as resizing may require the candidate window
@@ -154,7 +154,7 @@ class CandidateWindowView : public views::View {
DoNotChangeRowHeightWithLabelSwitchTest);
// Initializes the candidate views if needed.
- void MaybeInitializeCandidateViews(const ibus::IBusLookupTable& lookup_table);
+ void MaybeInitializeCandidateViews(const IBusLookupTable& lookup_table);
// Returns the appropriate area (header or footer) to put auxiliary texts.
InformationTextArea* GetAuxiliaryTextArea();
@@ -168,7 +168,7 @@ class CandidateWindowView : public views::View {
void NotifyIfCandidateWindowOpenedOrClosed();
// The lookup table (candidates).
- ibus::IBusLookupTable lookup_table_;
+ IBusLookupTable lookup_table_;
// The index in the current page of the candidate currently being selected.
int selected_candidate_index_in_page_;

Powered by Google App Engine
This is Rietveld 408576698