blob: aa94500950679d563d53102851bcea079f1fbc86 [file] [log] [blame]
// 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/web_view/public/cwv_preview_element_info.h"
#import "ios/web_view/internal/cwv_preview_element_info_internal.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation CWVPreviewElementInfo
@synthesize linkURL = _linkURL;
- (instancetype)initWithLinkURL:(NSURL*)linkURL {
self = [super init];
if (self) {
_linkURL = linkURL;
}
return self;
}
@end