Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Side by Side Diff: ios/chrome/proto_today_extension/widget_view.mm

Issue 2632333002: Add a prototype today extension behind gn flag (Closed)
Patch Set: arc and comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698