OLD | NEW |
(Empty) | |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_OPEN_IN_CONTROLLER_TESTING_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_OPEN_IN_CONTROLLER_TESTING_H_ |
| 7 |
| 8 @interface OpenInController (TestingAditions) |
| 9 - (NSString*)suggestedFilename; |
| 10 - (void)startDownload; |
| 11 - (void)setDocumentInteractionController: |
| 12 (UIDocumentInteractionController*)controller; |
| 13 @end |
| 14 |
| 15 #endif // IOS_CHROME_BROWSER_UI_OPEN_IN_CONTROLLER_TESTING_H_ |
OLD | NEW |