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

Unified Diff: chrome/browser/extensions/api/input/input.cc

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bookmarks Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/input/input.cc
diff --git a/chrome/browser/extensions/api/input/input.cc b/chrome/browser/extensions/api/input/input.cc
index f8db0cd8e2c998af864b31e2d62749736007058b..657bad954bf4903e7d3844e420151c0488de0f0e 100644
--- a/chrome/browser/extensions/api/input/input.cc
+++ b/chrome/browser/extensions/api/input/input.cc
@@ -33,7 +33,7 @@ const char kNotYetImplementedError[] =
namespace extensions {
-bool VirtualKeyboardPrivateInsertTextFunction::RunImpl() {
+bool VirtualKeyboardPrivateInsertTextFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
base::string16 text;
@@ -46,7 +46,7 @@ bool VirtualKeyboardPrivateInsertTextFunction::RunImpl() {
#endif
}
-bool VirtualKeyboardPrivateMoveCursorFunction::RunImpl() {
+bool VirtualKeyboardPrivateMoveCursorFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
if (!CommandLine::ForCurrentProcess()->HasSwitch(
@@ -69,7 +69,7 @@ bool VirtualKeyboardPrivateMoveCursorFunction::RunImpl() {
#endif
}
-bool VirtualKeyboardPrivateSendKeyEventFunction::RunImpl() {
+bool VirtualKeyboardPrivateSendKeyEventFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
base::Value* options_value = NULL;
@@ -101,7 +101,7 @@ bool VirtualKeyboardPrivateSendKeyEventFunction::RunImpl() {
#endif
}
-bool VirtualKeyboardPrivateHideKeyboardFunction::RunImpl() {
+bool VirtualKeyboardPrivateHideKeyboardFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
UMA_HISTOGRAM_ENUMERATION(
@@ -121,7 +121,7 @@ bool VirtualKeyboardPrivateHideKeyboardFunction::RunImpl() {
#endif
}
-bool VirtualKeyboardPrivateLockKeyboardFunction::RunImpl() {
+bool VirtualKeyboardPrivateLockKeyboardFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
bool lock;
@@ -134,7 +134,7 @@ bool VirtualKeyboardPrivateLockKeyboardFunction::RunImpl() {
#endif
}
-bool VirtualKeyboardPrivateKeyboardLoadedFunction::RunImpl() {
+bool VirtualKeyboardPrivateKeyboardLoadedFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
keyboard::MarkKeyboardLoadFinished();
@@ -146,7 +146,7 @@ bool VirtualKeyboardPrivateKeyboardLoadedFunction::RunImpl() {
#endif
}
-bool VirtualKeyboardPrivateGetKeyboardConfigFunction::RunImpl() {
+bool VirtualKeyboardPrivateGetKeyboardConfigFunction::RunSync() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(USE_ASH)
base::DictionaryValue* results = new base::DictionaryValue();
« no previous file with comments | « chrome/browser/extensions/api/input/input.h ('k') | chrome/browser/extensions/api/input_ime/input_ime_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698