| Index: chrome/browser/extensions/api/module/module.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/api/module/module.cc (revision 179687)
|
| +++ chrome/browser/extensions/api/module/module.cc (working copy)
|
| @@ -12,11 +12,11 @@
|
|
|
| namespace extensions {
|
|
|
| -ExtensionPrefs* SetUpdateUrlDataFunction::extension_prefs() {
|
| +ExtensionPrefs* ExtensionSetUpdateUrlDataFunction::extension_prefs() {
|
| return profile()->GetExtensionService()->extension_prefs();
|
| }
|
|
|
| -bool SetUpdateUrlDataFunction::RunImpl() {
|
| +bool ExtensionSetUpdateUrlDataFunction::RunImpl() {
|
| std::string data;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &data));
|
|
|
| @@ -24,7 +24,7 @@
|
| return true;
|
| }
|
|
|
| -bool IsAllowedIncognitoAccessFunction::RunImpl() {
|
| +bool ExtensionIsAllowedIncognitoAccessFunction::RunImpl() {
|
| ExtensionService* ext_service = profile()->GetExtensionService();
|
| const Extension* extension = GetExtension();
|
|
|
| @@ -33,7 +33,7 @@
|
| return true;
|
| }
|
|
|
| -bool IsAllowedFileSchemeAccessFunction::RunImpl() {
|
| +bool ExtensionIsAllowedFileSchemeAccessFunction::RunImpl() {
|
| ExtensionService* ext_service = profile()->GetExtensionService();
|
| const Extension* extension = GetExtension();
|
|
|
|
|