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

Unified Diff: chrome/browser/chromeos/input_method/mode_indicator_controller.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/mode_indicator_controller.cc
diff --git a/chrome/browser/chromeos/input_method/mode_indicator_controller.cc b/chrome/browser/chromeos/input_method/mode_indicator_controller.cc
index b526a1c94fea827ba9171a42c123eec4f559a5ee..8cdb7f5d04239ce86ceb3cd5dd547886f8c9d1ff 100644
--- a/chrome/browser/chromeos/input_method/mode_indicator_controller.cc
+++ b/chrome/browser/chromeos/input_method/mode_indicator_controller.cc
@@ -104,9 +104,9 @@ void ModeIndicatorController::ShowModeIndicator() {
const base::string16 short_name =
imm_->GetInputMethodUtil()->GetInputMethodShortName(descriptor);
- aura::Window* parent = ash::Shell::GetContainer(
- ash::wm::GetActiveWindow()->GetRootWindow(),
- ash::internal::kShellWindowId_InputMethodContainer);
+ aura::Window* parent =
+ ash::Shell::GetContainer(ash::wm::GetActiveWindow()->GetRootWindow(),
+ ash::kShellWindowId_InputMethodContainer);
ash::ime::ModeIndicatorView* mi_view = new ash::ime::ModeIndicatorView(
parent, cursor_bounds_, short_name);
views::BubbleDelegateView::CreateBubble(mi_view);

Powered by Google App Engine
This is Rietveld 408576698