OLD | NEW |
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 "ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h" |
| 6 |
5 #include "base/logging.h" | 7 #include "base/logging.h" |
6 #include "chromeos/ime/component_extension_ime_manager.h" | 8 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" |
7 #include "chromeos/ime/extension_ime_util.h" | 9 #include "ui/base/ime/chromeos/extension_ime_util.h" |
8 #include "chromeos/ime/mock_component_extension_ime_manager_delegate.h" | |
9 | 10 |
10 namespace chromeos { | 11 namespace chromeos { |
11 namespace input_method { | 12 namespace input_method { |
12 | 13 |
13 MockComponentExtIMEManagerDelegate::MockComponentExtIMEManagerDelegate() | 14 MockComponentExtIMEManagerDelegate::MockComponentExtIMEManagerDelegate() |
14 : load_call_count_(0), | 15 : load_call_count_(0), |
15 unload_call_count_(0) { | 16 unload_call_count_(0) { |
16 } | 17 } |
17 | 18 |
18 MockComponentExtIMEManagerDelegate::~MockComponentExtIMEManagerDelegate() { | 19 MockComponentExtIMEManagerDelegate::~MockComponentExtIMEManagerDelegate() { |
(...skipping 14 matching lines...) Expand all Loading... |
33 | 34 |
34 void MockComponentExtIMEManagerDelegate::Unload(Profile* profile, | 35 void MockComponentExtIMEManagerDelegate::Unload(Profile* profile, |
35 const std::string& extension_id, | 36 const std::string& extension_id, |
36 const base::FilePath& path) { | 37 const base::FilePath& path) { |
37 unload_call_count_++; | 38 unload_call_count_++; |
38 last_unloaded_extension_id_ = extension_id; | 39 last_unloaded_extension_id_ = extension_id; |
39 } | 40 } |
40 | 41 |
41 } // namespace input_method | 42 } // namespace input_method |
42 } // namespace chromeos | 43 } // namespace chromeos |
OLD | NEW |