mirror of https://github.com/electron/electron
22 lines
476 B
Plaintext
22 lines
476 B
Plaintext
// Copyright (c) 2018 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/ui/cocoa/electron_preview_item.h"
|
|
|
|
@implementation ElectronPreviewItem
|
|
|
|
@synthesize previewItemURL;
|
|
@synthesize previewItemTitle;
|
|
|
|
- (id)initWithURL:(NSURL*)url title:(NSString*)title {
|
|
self = [super init];
|
|
if (self) {
|
|
self.previewItemURL = url;
|
|
self.previewItemTitle = title;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|