12345678910111213141516171819202122232425262728 |
- /*****************************************************************************
- * VLCGoogleDriveTableViewController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Carola Nitz <nitz.carola # googlemail.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCGoogleDriveController.h"
- #import "GTMOAuth2ViewControllerTouch.h"
- @interface VLCGoogleDriveTableViewController : UIViewController <VLCGoogleDriveController>
- @property (nonatomic, strong) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) IBOutlet UIView *loginToGoogleDriveView;
- @property (nonatomic, strong) IBOutlet UIButton *loginToGoogleDriveButton;
- - (IBAction)loginToGoogleDriveAction:(id)sender;
- - (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController finishedWithAuth:(GTMOAuth2Authentication *)authResult error:(NSError *)error;
- - (void)updateViewAfterSessionChange;
- @end
|