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

Unified Diff: chrome/browser/chromeos/input_method/mock_input_method_delegate.cc

Issue 11558017: Decouple input_method from BrowserThread (and content/). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build failure. Created 8 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/input_method/mock_input_method_delegate.cc
diff --git a/chrome/browser/chromeos/input_method/mock_input_method_delegate.cc b/chrome/browser/chromeos/input_method/mock_input_method_delegate.cc
index 7114fbe1a5f2578158ebdabde5b5e59d024e7721..e9969e11af1348803e9619ff78bad589ffc00fef 100644
--- a/chrome/browser/chromeos/input_method/mock_input_method_delegate.cc
+++ b/chrome/browser/chromeos/input_method/mock_input_method_delegate.cc
@@ -4,6 +4,9 @@
#include "chrome/browser/chromeos/input_method/mock_input_method_delegate.h"
+#include "base/logging.h"
+#include "base/sequenced_task_runner.h"
+
namespace chromeos {
namespace input_method {
@@ -22,5 +25,17 @@ std::string MockInputMethodDelegate::GetActiveLocale() const {
return active_locale_;
}
+scoped_refptr<base::SequencedTaskRunner>
+MockInputMethodDelegate::GetDefaultTaskRunner() const {
+ NOTREACHED();
+ return NULL;
+}
+
+scoped_refptr<base::SequencedTaskRunner>
+MockInputMethodDelegate::GetWorkerTaskRunner() const {
+ NOTREACHED();
+ return NULL;
+}
+
} // namespace input_method
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698