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

Unified Diff: chrome/browser/speech/extension_api/tts_extension_api.h

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/speech/extension_api/tts_extension_api.h
diff --git a/chrome/browser/speech/extension_api/tts_extension_api.h b/chrome/browser/speech/extension_api/tts_extension_api.h
index 66ccaa945c7bbf2ed4902a1c41fbbf5931970094..b4dfcd634ea6f940a2ee5c2d8ed05959157a5d08 100644
--- a/chrome/browser/speech/extension_api/tts_extension_api.h
+++ b/chrome/browser/speech/extension_api/tts_extension_api.h
@@ -30,35 +30,35 @@ class TtsSpeakFunction : public ChromeAsyncExtensionFunction {
class TtsStopSpeakingFunction : public ChromeSyncExtensionFunction {
private:
virtual ~TtsStopSpeakingFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
DECLARE_EXTENSION_FUNCTION("tts.stop", TTS_STOP)
};
class TtsPauseFunction : public ChromeSyncExtensionFunction {
private:
virtual ~TtsPauseFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
DECLARE_EXTENSION_FUNCTION("tts.pause", TTS_PAUSE)
};
class TtsResumeFunction : public ChromeSyncExtensionFunction {
private:
virtual ~TtsResumeFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
DECLARE_EXTENSION_FUNCTION("tts.resume", TTS_RESUME)
};
class TtsIsSpeakingFunction : public ChromeSyncExtensionFunction {
private:
virtual ~TtsIsSpeakingFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
DECLARE_EXTENSION_FUNCTION("tts.isSpeaking", TTS_ISSPEAKING)
};
class TtsGetVoicesFunction : public ChromeSyncExtensionFunction {
private:
virtual ~TtsGetVoicesFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
DECLARE_EXTENSION_FUNCTION("tts.getVoices", TTS_GETVOICES)
};

Powered by Google App Engine
This is Rietveld 408576698