| Index: chrome/browser/extensions/api/font_settings/font_settings_api.h
|
| diff --git a/chrome/browser/extensions/api/font_settings/font_settings_api.h b/chrome/browser/extensions/api/font_settings/font_settings_api.h
|
| index 0f65f185d5a9ecae26d9adf7f2ec03bb449c7d7c..b34b1e9d38abbc93d522d9106ad30153731bfe8b 100644
|
| --- a/chrome/browser/extensions/api/font_settings/font_settings_api.h
|
| +++ b/chrome/browser/extensions/api/font_settings/font_settings_api.h
|
| @@ -105,7 +105,7 @@ class FontSettingsClearFontFunction : public ChromeSyncExtensionFunction {
|
| virtual ~FontSettingsClearFontFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // fontSettings.getFont API function.
|
| @@ -117,7 +117,7 @@ class FontSettingsGetFontFunction : public ChromeSyncExtensionFunction {
|
| virtual ~FontSettingsGetFontFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // fontSettings.setFont API function.
|
| @@ -129,7 +129,7 @@ class FontSettingsSetFontFunction : public ChromeSyncExtensionFunction {
|
| virtual ~FontSettingsSetFontFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // fontSettings.getFontList API function.
|
| @@ -142,7 +142,7 @@ class FontSettingsGetFontListFunction : public ChromeAsyncExtensionFunction {
|
| virtual ~FontSettingsGetFontListFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void FontListHasLoaded(scoped_ptr<base::ListValue> list);
|
| @@ -155,7 +155,7 @@ class ClearFontPrefExtensionFunction : public ChromeSyncExtensionFunction {
|
| virtual ~ClearFontPrefExtensionFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // Implementations should return the name of the preference to clear, like
|
| // "webkit.webprefs.default_font_size".
|
| @@ -168,7 +168,7 @@ class GetFontPrefExtensionFunction : public ChromeSyncExtensionFunction {
|
| virtual ~GetFontPrefExtensionFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // Implementations should return the name of the preference to get, like
|
| // "webkit.webprefs.default_font_size".
|
| @@ -185,7 +185,7 @@ class SetFontPrefExtensionFunction : public ChromeSyncExtensionFunction {
|
| virtual ~SetFontPrefExtensionFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // Implementations should return the name of the preference to set, like
|
| // "webkit.webprefs.default_font_size".
|
|
|