| Index: chrome/browser/chromeos/extensions/input_method_api.cc
|
| diff --git a/chrome/browser/chromeos/extensions/input_method_api.cc b/chrome/browser/chromeos/extensions/input_method_api.cc
|
| index 0476253d2e09508b86ecc6856717b4a7f45bf237..5380fb681d63d50418e438a0819a47057817fb41 100644
|
| --- a/chrome/browser/chromeos/extensions/input_method_api.cc
|
| +++ b/chrome/browser/chromeos/extensions/input_method_api.cc
|
| @@ -28,7 +28,7 @@ GetInputMethodFunction::GetInputMethodFunction() {
|
| GetInputMethodFunction::~GetInputMethodFunction() {
|
| }
|
|
|
| -bool GetInputMethodFunction::RunImpl() {
|
| +bool GetInputMethodFunction::RunSync() {
|
| #if !defined(OS_CHROMEOS)
|
| NOTREACHED();
|
| return false;
|
| @@ -48,7 +48,7 @@ StartImeFunction::StartImeFunction() {
|
| StartImeFunction::~StartImeFunction() {
|
| }
|
|
|
| -bool StartImeFunction::RunImpl() {
|
| +bool StartImeFunction::RunSync() {
|
| #if !defined(OS_CHROMEOS)
|
| NOTREACHED();
|
| return false;
|
|
|