blob: 9bf50b09a5a1e8be21606acb2011126c58d833de [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IOS_CHROME_BROWSER_DOWNLOAD_MODEL_DOWNLOAD_APP_INTERFACE_H_
#define IOS_CHROME_BROWSER_DOWNLOAD_MODEL_DOWNLOAD_APP_INTERFACE_H_
#import <Foundation/Foundation.h>
// EG test app interface managing the download feature.
@interface DownloadAppInterface : NSObject
// Deletes the file named `fileName` in the downloads directory.
+ (void)deleteDownloadsDirectoryFileWithName:(NSString*)fileName;
@end
#endif // IOS_CHROME_BROWSER_DOWNLOAD_MODEL_DOWNLOAD_APP_INTERFACE_H_