OOFreewheelManager.h
1 
9 #import <Foundation/Foundation.h>
10 #import <CoreLocation/CoreLocation.h>
11 #import <AdManager/FWSDK.h>
12 #import <OoyalaSDK/OOAdSpotPlugin.h>
13 
14 @class OOOoyalaPlayerViewController;
15 @class OOOoyalaPlayer;
16 @class OOContentItem;
17 @class OOStateNotifier;
18 
22 @interface OOFreewheelManager : OOAdSpotPlugin<OOAdSpotPluginDelegate>
23 
25 @property(nonatomic) id<FWContext> fwContext;
26 
28 @property(nonatomic) OOStateNotifier *stateNotifier;
29 
31 @property(nonatomic) BOOL openClickThroughInApp;
32 
38 - (id)initWithOoyalaPlayerViewController:(OOOoyalaPlayerViewController *)viewController;
39 
45 - (id)initWithOoyalaPlayer:(OOOoyalaPlayer *)player;
46 
57 - (void)overrideFreewheelParameters:(NSMutableDictionary *)freewheelParameters;
58 
59 @end
BOOL openClickThroughInApp
if set to YES the ads click through url is opened in in-app web view, if set to NO the ads click thro...
Definition: OOFreewheelManager.h:31
A class that manages Freewheel ads.
Definition: OOFreewheelManager.h:22
OOStateNotifier * stateNotifier
the state notifier to notify state changes
Definition: OOFreewheelManager.h:28
id< FWContext > fwContext
the Freewheel context from Freewheel SDK
Definition: OOFreewheelManager.h:25