summaryrefslogtreecommitdiffstats
path: root/chrome/browser/speech/tts_extension_loader_chromeos.cc
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 03:02:08 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-07 03:02:08 +0000
commitb94584a231b160d2570cc38e78457fb852eb0c41 (patch)
tree8d03a214b0f7305c38eb8e2b6852015ae38fef07 /chrome/browser/speech/tts_extension_loader_chromeos.cc
parent8bc6596e0bdb39d1450d595bcc62244a5f3190b9 (diff)
downloadchromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.zip
chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.gz
chromium_src-b94584a231b160d2570cc38e78457fb852eb0c41.tar.bz2
Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition.
Automated clean up of style checker errors that were missed due to the plugin not being executed on implementation files. BUG=115047 Review URL: https://codereview.chromium.org/12212048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/speech/tts_extension_loader_chromeos.cc')
-rw-r--r--chrome/browser/speech/tts_extension_loader_chromeos.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/speech/tts_extension_loader_chromeos.cc b/chrome/browser/speech/tts_extension_loader_chromeos.cc
index 7a0f49c..38b6799 100644
--- a/chrome/browser/speech/tts_extension_loader_chromeos.cc
+++ b/chrome/browser/speech/tts_extension_loader_chromeos.cc
@@ -39,15 +39,15 @@ class TtsExtensionLoaderChromeOsFactory : public ProfileKeyedServiceFactory {
ProfileDependencyManager::GetInstance())
{}
- ~TtsExtensionLoaderChromeOsFactory() {}
+ virtual ~TtsExtensionLoaderChromeOsFactory() {}
- bool ServiceRedirectedInIncognito() const OVERRIDE {
+ virtual bool ServiceRedirectedInIncognito() const OVERRIDE {
// If given an incognito profile (including the Chrome OS login
// profile), share the service with the original profile.
return true;
}
- ProfileKeyedService* BuildServiceInstanceFor(Profile* profile) const
+ virtual ProfileKeyedService* BuildServiceInstanceFor(Profile* profile) const
OVERRIDE {
return new TtsExtensionLoaderChromeOs(profile);
}