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

Side by Side Diff: chrome/browser/ui/views/ash/ime_controller_chromeos.cc

Issue 9570044: Rename chrome/browser/ui/views/{aura => ash}/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/aura/ime_controller_chromeos.h" 5 #include "chrome/browser/ui/views/ash/ime_controller_chromeos.h"
6 6
7 #include "chrome/browser/chromeos/input_method/input_method_manager.h" 7 #include "chrome/browser/chromeos/input_method/input_method_manager.h"
8 8
9 bool ImeController::HandleNextIme() { 9 bool ImeController::HandleNextIme() {
10 chromeos::input_method::InputMethodManager* manager = 10 chromeos::input_method::InputMethodManager* manager =
11 chromeos::input_method::InputMethodManager::GetInstance(); 11 chromeos::input_method::InputMethodManager::GetInstance();
12 return manager->SwitchToNextInputMethod(); 12 return manager->SwitchToNextInputMethod();
13 } 13 }
14 14
15 bool ImeController::HandlePreviousIme() { 15 bool ImeController::HandlePreviousIme() {
16 chromeos::input_method::InputMethodManager* manager = 16 chromeos::input_method::InputMethodManager* manager =
17 chromeos::input_method::InputMethodManager::GetInstance(); 17 chromeos::input_method::InputMethodManager::GetInstance();
18 return manager->SwitchToPreviousInputMethod(); 18 return manager->SwitchToPreviousInputMethod();
19 } 19 }
20 20
21 bool ImeController::HandleSwitchIme(const ui::Accelerator& accelerator) { 21 bool ImeController::HandleSwitchIme(const ui::Accelerator& accelerator) {
22 chromeos::input_method::InputMethodManager* manager = 22 chromeos::input_method::InputMethodManager* manager =
23 chromeos::input_method::InputMethodManager::GetInstance(); 23 chromeos::input_method::InputMethodManager::GetInstance();
24 return manager->SwitchInputMethod(accelerator); 24 return manager->SwitchInputMethod(accelerator);
25 } 25 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/ash/ime_controller_chromeos.h ('k') | chrome/browser/ui/views/ash/launcher/chrome_launcher_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698