| Index: chrome/browser/extensions/api/developer_private/developer_private_api.h
 | 
| diff --git a/chrome/browser/extensions/api/developer_private/developer_private_api.h b/chrome/browser/extensions/api/developer_private/developer_private_api.h
 | 
| index 09b0ae46e9b30eff387e695b75618cd25e3b0f77..f54c7bd16345c1f73786366b442f95698ffede39 100644
 | 
| --- a/chrome/browser/extensions/api/developer_private/developer_private_api.h
 | 
| +++ b/chrome/browser/extensions/api/developer_private/developer_private_api.h
 | 
| @@ -239,29 +239,14 @@ class DeveloperPrivateInspectFunction : public UIThreadExtensionFunction {
 | 
|    ResponseAction Run() override;
 | 
|  };
 | 
|  
 | 
| -class DeveloperPrivateAllowFileAccessFunction
 | 
| +class DeveloperPrivateSetExtensionPermissionFunction
 | 
|      : public DeveloperPrivateAPIFunction {
 | 
|   public:
 | 
| -  DECLARE_EXTENSION_FUNCTION("developerPrivate.allowFileAccess",
 | 
| -                             DEVELOPERPRIVATE_ALLOWFILEACCESS);
 | 
| +  DECLARE_EXTENSION_FUNCTION("developerPrivate.setExtensionPermission",
 | 
| +                             DEVELOPERPRIVATE_SETEXTENSIONPERMISSION);
 | 
|  
 | 
|   protected:
 | 
| -  ~DeveloperPrivateAllowFileAccessFunction() override;
 | 
| -
 | 
| -  // ExtensionFunction:
 | 
| -  ResponseAction Run() override;
 | 
| -};
 | 
| -
 | 
| -class DeveloperPrivateAllowIncognitoFunction
 | 
| -    : public DeveloperPrivateAPIFunction {
 | 
| - public:
 | 
| -  DECLARE_EXTENSION_FUNCTION("developerPrivate.allowIncognito",
 | 
| -                             DEVELOPERPRIVATE_ALLOWINCOGNITO);
 | 
| -
 | 
| - protected:
 | 
| -  ~DeveloperPrivateAllowIncognitoFunction() override;
 | 
| -
 | 
| -  // UIThreadExtensionFunction:
 | 
| +  ~DeveloperPrivateSetExtensionPermissionFunction() override;
 | 
|    ResponseAction Run() override;
 | 
|  };
 | 
|  
 | 
| 
 |