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

Side by Side Diff: chromeos/ime/mock_component_extension_ime_manager_delegate.cc

Issue 419293002: IME refactoring: ChromeOS introduce input methods State. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unit test fixed. Re-sorted methods of StateImpl and IMM. Created 6 years, 4 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
« no previous file with comments | « chromeos/ime/mock_component_extension_ime_manager_delegate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "base/logging.h" 5 #include "base/logging.h"
6 #include "chromeos/ime/component_extension_ime_manager.h" 6 #include "chromeos/ime/component_extension_ime_manager.h"
7 #include "chromeos/ime/extension_ime_util.h" 7 #include "chromeos/ime/extension_ime_util.h"
8 #include "chromeos/ime/mock_component_extension_ime_manager_delegate.h" 8 #include "chromeos/ime/mock_component_extension_ime_manager_delegate.h"
9 9
10 namespace chromeos { 10 namespace chromeos {
11 namespace input_method { 11 namespace input_method {
12 12
13 MockComponentExtIMEManagerDelegate::MockComponentExtIMEManagerDelegate() 13 MockComponentExtIMEManagerDelegate::MockComponentExtIMEManagerDelegate()
14 : load_call_count_(0), 14 : load_call_count_(0),
15 unload_call_count_(0) { 15 unload_call_count_(0) {
16 } 16 }
17 17
18 MockComponentExtIMEManagerDelegate::~MockComponentExtIMEManagerDelegate() { 18 MockComponentExtIMEManagerDelegate::~MockComponentExtIMEManagerDelegate() {
19 } 19 }
20 20
21 std::vector<ComponentExtensionIME> 21 std::vector<ComponentExtensionIME>
22 MockComponentExtIMEManagerDelegate::ListIME() { 22 MockComponentExtIMEManagerDelegate::ListIME() {
23 return ime_list_; 23 return ime_list_;
24 } 24 }
25 25
26 bool MockComponentExtIMEManagerDelegate::Load(const std::string& extension_id, 26 bool MockComponentExtIMEManagerDelegate::Load(Profile* profile,
27 const std::string& extension_id,
27 const std::string& manifest, 28 const std::string& manifest,
28 const base::FilePath& path) { 29 const base::FilePath& path) {
29 last_loaded_extension_id_ = extension_id; 30 last_loaded_extension_id_ = extension_id;
30 load_call_count_++; 31 load_call_count_++;
31 return true; 32 return true;
32 } 33 }
33 34
34 void MockComponentExtIMEManagerDelegate::Unload(const std::string& extension_id, 35 void MockComponentExtIMEManagerDelegate::Unload(Profile* profile,
36 const std::string& extension_id,
35 const base::FilePath& path) { 37 const base::FilePath& path) {
36 unload_call_count_++; 38 unload_call_count_++;
37 last_unloaded_extension_id_ = extension_id; 39 last_unloaded_extension_id_ = extension_id;
38 } 40 }
39 41
40 } // namespace input_method 42 } // namespace input_method
41 } // namespace chromeos 43 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/ime/mock_component_extension_ime_manager_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698