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

Unified Diff: chrome/browser/chromeos/input_method/candidate_window_controller_impl.cc

Issue 224113005: Eliminate ash::internal namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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_controller_impl.cc
diff --git a/chrome/browser/chromeos/input_method/candidate_window_controller_impl.cc b/chrome/browser/chromeos/input_method/candidate_window_controller_impl.cc
index f2721a9bb974eff3a50de90b87dae4a629800c65..5cdb9b2d2ce247838d927b59ac834a1b9346f9b0 100644
--- a/chrome/browser/chromeos/input_method/candidate_window_controller_impl.cc
+++ b/chrome/browser/chromeos/input_method/candidate_window_controller_impl.cc
@@ -47,9 +47,9 @@ void CandidateWindowControllerImpl::InitCandidateWindowView() {
aura::Window* active_window = ash::wm::GetActiveWindow();
candidate_window_view_ =
new ash::ime::CandidateWindowView(ash::Shell::GetContainer(
- active_window ?
- active_window->GetRootWindow() : ash::Shell::GetTargetRootWindow(),
- ash::internal::kShellWindowId_InputMethodContainer));
+ active_window ? active_window->GetRootWindow()
+ : ash::Shell::GetTargetRootWindow(),
+ ash::kShellWindowId_InputMethodContainer));
candidate_window_view_->AddObserver(this);
candidate_window_view_->SetCursorBounds(cursor_bounds_, composition_head_);
views::Widget* widget = candidate_window_view_->InitWidget();

Powered by Google App Engine
This is Rietveld 408576698