diff options
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_configuration.h')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_configuration.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_configuration.h b/chrome/browser/chromeos/input_method/input_method_configuration.h index d1fc12c..6d56ce2 100644 --- a/chrome/browser/chromeos/input_method/input_method_configuration.h +++ b/chrome/browser/chromeos/input_method/input_method_configuration.h @@ -5,6 +5,8 @@ #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_CONFIGURATION_H_ #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_CONFIGURATION_H_ +#include "base/sequenced_task_runner.h" + namespace chromeos { namespace input_method { @@ -13,7 +15,9 @@ class InputMethodManager; // Initializes the InputMethodManager. Must be called before any calls to // GetInstance(). We explicitly initialize and shut down the global instance, // rather than making it a Singleton, to ensure clean startup and shutdown. -void Initialize(); +void Initialize( + const scoped_refptr<base::SequencedTaskRunner>& ui_task_runner, + const scoped_refptr<base::SequencedTaskRunner>& file_task_runner); // Similar to Initialize(), but can inject an alternative // InputMethodManager such as MockInputMethodManager for testing. |