/***************************************************************************** * VLCGoogleDriveTableViewController.h * VLC for iOS ***************************************************************************** * Copyright (c) 2013 VideoLAN. All rights reserved. * $Id$ * * Authors: Carola Nitz * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import "VLCGoogleDriveController.h" #import "GTMOAuth2ViewControllerTouch.h" @interface VLCGoogleDriveTableViewController : UIViewController @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