| Index: ios/chrome/app/safe_mode/safe_mode_view_controller.h
|
| diff --git a/ios/chrome/app/safe_mode/safe_mode_view_controller.h b/ios/chrome/app/safe_mode/safe_mode_view_controller.h
|
| index 38078aa29c298460fd3b3cd1559fd9a3a09c41e4..64e2c2dcc7afc64c7f0558c8946dfdb8154debf8 100644
|
| --- a/ios/chrome/app/safe_mode/safe_mode_view_controller.h
|
| +++ b/ios/chrome/app/safe_mode/safe_mode_view_controller.h
|
| @@ -7,9 +7,6 @@
|
|
|
| #import <UIKit/UIKit.h>
|
|
|
| -#import "base/ios/weak_nsobject.h"
|
| -#include "base/mac/scoped_nsobject.h"
|
| -
|
| @class PrimaryActionButton;
|
|
|
| // A protocol required by delegates of the SafeModeViewController.
|
| @@ -19,16 +16,7 @@
|
| - (void)startBrowserFromSafeMode;
|
| @end
|
|
|
| -@interface SafeModeViewController : UIViewController {
|
| - @private
|
| - base::WeakNSProtocol<id<SafeModeViewControllerDelegate>> delegate_;
|
| - base::scoped_nsobject<UIView> innerView_;
|
| - base::scoped_nsobject<PrimaryActionButton> startButton_;
|
| - base::scoped_nsobject<UILabel> uploadDescription_;
|
| - base::scoped_nsobject<UIProgressView> uploadProgress_;
|
| - base::scoped_nsobject<NSDate> uploadStartTime_;
|
| - base::scoped_nsobject<NSTimer> uploadTimer_;
|
| -}
|
| +@interface SafeModeViewController : UIViewController
|
|
|
| - (id)initWithDelegate:(id<SafeModeViewControllerDelegate>)delegate;
|
|
|
|
|