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

Side by Side Diff: chrome/browser/chromeos/input_method/mock_input_method_manager.cc

Issue 2274013003: Keeps the opt-in IME menu in lock screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments. Created 4 years, 3 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
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/chromeos/input_method/mock_input_method_manager.h" 5 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 namespace chromeos { 9 namespace chromeos {
10 namespace input_method { 10 namespace input_method {
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 void MockInputMethodManager::SetCurrentInputMethodId( 245 void MockInputMethodManager::SetCurrentInputMethodId(
246 const std::string& input_method_id) { 246 const std::string& input_method_id) {
247 state_->current_input_method_id = input_method_id; 247 state_->current_input_method_id = input_method_id;
248 } 248 }
249 249
250 void MockInputMethodManager::ImeMenuActivationChanged(bool is_active) {} 250 void MockInputMethodManager::ImeMenuActivationChanged(bool is_active) {}
251 251
252 void MockInputMethodManager::NotifyImeMenuItemsChanged( 252 void MockInputMethodManager::NotifyImeMenuItemsChanged(
253 const std::string& engine_id, 253 const std::string& engine_id,
254 const std::vector<InputMethodManager::MenuItem>& items) {} 254 const std::vector<InputMethodManager::MenuItem>& items) {}
255
256 void MockInputMethodManager::MaybeNotifyImeMenuActivationChanged() {}
257
255 } // namespace input_method 258 } // namespace input_method
256 } // namespace chromeos 259 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698