VLCGoogleDriveTableViewController.h 854 B

1234567891011121314151617181920212223242526
  1. //
  2. // VLCGoogleDriveTableViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Carola Nitz on 21.09.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import "VLCGoogleDriveController.h"
  11. #import "GTMOAuth2ViewControllerTouch.h"
  12. @interface VLCGoogleDriveTableViewController : UIViewController <VLCGoogleDriveController>
  13. @property (nonatomic, strong) IBOutlet UITableView *tableView;
  14. @property (nonatomic, strong) IBOutlet UIView *loginToGoogleDriveView;
  15. @property (nonatomic, strong) IBOutlet UIButton *loginToGoogleDriveButton;
  16. - (IBAction)loginToGoogleDriveAction:(id)sender;
  17. - (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController finishedWithAuth:(GTMOAuth2Authentication *)authResult error:(NSError *)error;
  18. - (void)updateViewAfterSessionChange;
  19. @end