Chromium Code Reviews| Index: chrome/installer/mac/app/delegate.h |
| diff --git a/chrome/installer/mac/app/delegate.h b/chrome/installer/mac/app/delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4a5050ac09c98ef097d45b55eea2ac1232d8f8fe |
| --- /dev/null |
| +++ b/chrome/installer/mac/app/delegate.h |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_INSTALLER_MAC_APP_DELEGATE_H_ |
|
Elly Fong-Jones
2016/07/06 15:22:02
I would use a more detailed filename here (Downloa
|
| +#define CHROME_INSTALLER_MAC_APP_DELEGATE_H_ |
| + |
| +#import <Foundation/Foundation.h> |
| + |
| +@interface DownloadDelegate : NSObject <NSURLSessionDownloadDelegate> |
| +// Returns a path to a user's home download folder. |
| +- (NSString*)getDownloadsFilePath; |
|
Elly Fong-Jones
2016/07/06 15:22:02
This seems like a sort of odd function to have on
|
| +@end |
| + |
| + |
| +#endif // CHROME_INSTALLER_MAC_APP_DELEGATE_H_ |
| + |
| + |