blob: 9d46f87879ac5444aae560f33f9d971a018991e2 [file] [log] [blame]
// Copyright 2018 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 IOS_CHROME_TEST_FAKES_FAKE_AR_QUICK_LOOK_TAB_HELPER_DELEGATE_H_
#define IOS_CHROME_TEST_FAKES_FAKE_AR_QUICK_LOOK_TAB_HELPER_DELEGATE_H_
#import <Foundation/Foundation.h>
#import "ios/chrome/browser/download/ar_quick_look_tab_helper_delegate.h"
// ARQuickLookTabHelperDelegate which collects all file URLs into |fileURLs|.
@interface FakeARQuickLookTabHelperDelegate
: NSObject <ARQuickLookTabHelperDelegate>
// All file URLs downloaded and presented by ARQuickLookTabHelper. These URLs
// cannot be nil.
@property(nonatomic, readonly) NSArray* fileURLs;
@end
#endif // IOS_CHROME_TEST_FAKES_FAKE_AR_QUICK_LOOK_TAB_HELPER_DELEGATE_H_