Chromium Code Reviews| Index: ios/chrome/content_widget_extension/content_widget_view.mm |
| diff --git a/ios/chrome/content_widget_extension/content_widget_view.mm b/ios/chrome/content_widget_extension/content_widget_view.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..71a436e2129cfea56fac4d4a48a7f75cb5518e2d |
| --- /dev/null |
| +++ b/ios/chrome/content_widget_extension/content_widget_view.mm |
| @@ -0,0 +1,15 @@ |
| +// 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/content_widget_extension/content_widget_view.h" |
| + |
| +#include "base/ios/ios_util.h" |
| +#include "base/logging.h" |
| + |
| +#if !defined(__has_feature) || !__has_feature(objc_arc) |
| +#error "This file requires ARC support." |
| +#endif |
| + |
| +@implementation ContentWidgetView |
|
marq (ping after 24h)
2017/06/08 08:49:56
Presumably something will be added here in future
lody
2017/06/08 09:19:56
haha, yes :D
|
| +@end |