Index: chrome/browser/extensions/api/module/module.cc |
diff --git a/chrome/browser/extensions/api/module/module.cc b/chrome/browser/extensions/api/module/module.cc |
index 87b2d33182116e9b419b0f572595f9c12f55c7a2..07e1f8a473a370204f45c437597fc19574dd1053 100644 |
--- a/chrome/browser/extensions/api/module/module.cc |
+++ b/chrome/browser/extensions/api/module/module.cc |
@@ -36,7 +36,7 @@ std::string GetUpdateURLData(const ExtensionPrefs* prefs, |
} // namespace extension |
-bool ExtensionSetUpdateUrlDataFunction::RunImpl() { |
+bool ExtensionSetUpdateUrlDataFunction::RunSync() { |
std::string data; |
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &data)); |
@@ -51,13 +51,13 @@ bool ExtensionSetUpdateUrlDataFunction::RunImpl() { |
return true; |
} |
-bool ExtensionIsAllowedIncognitoAccessFunction::RunImpl() { |
+bool ExtensionIsAllowedIncognitoAccessFunction::RunSync() { |
SetResult(new base::FundamentalValue( |
util::IsIncognitoEnabled(extension_id(), GetProfile()))); |
return true; |
} |
-bool ExtensionIsAllowedFileSchemeAccessFunction::RunImpl() { |
+bool ExtensionIsAllowedFileSchemeAccessFunction::RunSync() { |
SetResult(new base::FundamentalValue( |
util::AllowFileAccess(extension_id(), GetProfile()))); |
return true; |