Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: ios/public/provider/chrome/browser/native_app_launcher/fake_native_app_whitelist_manager.h

Issue 2664993003: Converts ios/chrome/browser/native_app_launcher:native_app_launcher_internal to ARC. (Closed)
Patch Set: feedback Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_NATIVE_APP_LAUNCHER_FAKE_NATIVE_APP_W HITELIST_MANAGER_H_ 5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_NATIVE_APP_LAUNCHER_FAKE_NATIVE_APP_W HITELIST_MANAGER_H_
6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_NATIVE_APP_LAUNCHER_FAKE_NATIVE_APP_W HITELIST_MANAGER_H_ 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_NATIVE_APP_LAUNCHER_FAKE_NATIVE_APP_W HITELIST_MANAGER_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 9
10 #import "ios/public/provider/chrome/browser/native_app_launcher/native_app_white list_manager.h" 10 #import "ios/public/provider/chrome/browser/native_app_launcher/native_app_white list_manager.h"
11 11
12 // Fake NativeAppWhitelistManager used for testing purposes. 12 // Fake NativeAppWhitelistManager used for testing purposes.
13 @interface FakeNativeAppWhitelistManager : NSObject<NativeAppWhitelistManager> 13 @interface FakeNativeAppWhitelistManager : NSObject<NativeAppWhitelistManager>
14 14
15 // The metadata returned by calls to |newNativeAppForURL:|. 15 // The metadata returned by calls to |nativeAppForURL:|.
16 @property(nonatomic, strong, readwrite) id<NativeAppMetadata> metadata; 16 @property(nonatomic, strong, readwrite) id<NativeAppMetadata> metadata;
17 17
18 // The Apps array returned by calls to |filteredAppsUsingBlock:|. 18 // The Apps array returned by calls to |filteredAppsUsingBlock:|.
19 @property(nonatomic, strong, readwrite) NSArray* appWhitelist; 19 @property(nonatomic, strong, readwrite) NSArray* appWhitelist;
20 20
21 // The String that will be used to create the NSURL for |schemeForAppId:|. 21 // The String that will be used to create the NSURL for |schemeForAppId:|.
22 @property(nonatomic, copy, readwrite) NSString* appScheme; 22 @property(nonatomic, copy, readwrite) NSString* appScheme;
23 23
24 @end 24 @end
25 25
26 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_NATIVE_APP_LAUNCHER_FAKE_NATIVE_AP P_WHITELIST_MANAGER_H_ 26 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_NATIVE_APP_LAUNCHER_FAKE_NATIVE_AP P_WHITELIST_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698