Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #import "ios/chrome/proto_today_extension/widget_view.h" | |
| 6 | |
|
sdefresne
2017/01/17 17:47:42
Please put ARC guards:
#if !defined(__has_feature
lody
2017/01/18 10:48:41
Done.
| |
| 7 @implementation WidgetView | |
| 8 | |
| 9 #pragma mark - Lifecycle | |
| 10 | |
| 11 - (instancetype)init { | |
| 12 self = [super initWithFrame:CGRectZero]; | |
| 13 return self; | |
| 14 } | |
| 15 | |
| 16 @end | |
| OLD | NEW |