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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/proto_today_extension/widget_view.mm
diff --git a/ios/chrome/proto_today_extension/widget_view.mm b/ios/chrome/proto_today_extension/widget_view.mm
new file mode 100644
index 0000000000000000000000000000000000000000..06928f2792f613b7c1f3c543d163f25bb0d87241
--- /dev/null
+++ b/ios/chrome/proto_today_extension/widget_view.mm
@@ -0,0 +1,16 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "ios/chrome/proto_today_extension/widget_view.h"
+
sdefresne 2017/01/17 17:47:42 Please put ARC guards: #if !defined(__has_feature
lody 2017/01/18 10:48:41 Done.
+@implementation WidgetView
+
+#pragma mark - Lifecycle
+
+- (instancetype)init {
+ self = [super initWithFrame:CGRectZero];
+ return self;
+}
+
+@end

Powered by Google App Engine
This is Rietveld 408576698