Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
Olivier
2017/01/17 10:13:05
2017
lody
2017/01/17 17:31:46
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_CHROME_PROTO_TODAY_EXTENSION_WIDGET_VIEW_H_ | |
| 6 #define IOS_CHROME_PROTO_TODAY_EXTENSION_WIDGET_VIEW_H_ | |
| 7 | |
| 8 #import <UIKit/UIKit.h> | |
| 9 | |
| 10 @class WidgetView; | |
|
Olivier
2017/01/17 10:13:05
remove
lody
2017/01/17 17:31:46
oops! done
| |
| 11 | |
| 12 @interface WidgetView : UIView | |
| 13 | |
| 14 - (instancetype)init NS_DESIGNATED_INITIALIZER; | |
| 15 - (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE; | |
| 16 - (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE; | |
| 17 | |
| 18 @end | |
| 19 | |
| 20 #endif // IOS_CHROME_PROTO_TODAY_EXTENSION_WIDGET_VIEW_H_ | |
| OLD | NEW |