blob: 79a2a6910be3d308c0cee49674ebed8a8cc0e37f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 2016 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.
#ifndef UI_BASE_CLIPBOARD_CLIPBOARD_UTIL_MAC_H_
#define UI_BASE_CLIPBOARD_CLIPBOARD_UTIL_MAC_H_
#import <AppKit/AppKit.h>
#include "base/mac/scoped_nsobject.h"
#include "ui/base/ui_base_export.h"
namespace ui {
class UI_BASE_EXPORT ClipboardUtil {
public:
// Returns an NSPasteboardItem that represents the given |url|.
// |url| must not be nil.
// If |title| is nil, |url| is used in its place.
static base::scoped_nsobject<NSPasteboardItem> PasteboardItemFromUrl(
NSString* url,
NSString* title);
};
}
#endif // UI_BASE_CLIPBOARD_CLIPBOARD_UTIL_MAC_H_
|