summaryrefslogtreecommitdiff
path: root/chromium/ui/base/clipboard/clipboard_constants_mac.mm
blob: a7a1c8ccaddc7852ac88cae84d2b2738c40256d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2013 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.

#include "ui/base/clipboard/clipboard_constants.h"

#import <Foundation/Foundation.h>

namespace ui {

NSString* const kImageSvg = @"public.svg-image";
// TODO(dcheng): This name is temporary. See crbug.com/106449.
NSString* const kWebCustomDataPboardType = @"org.chromium.web-custom-data";
NSString* const kWebSmartPastePboardType = @"NeXT smart paste pasteboard type";

// It is the common convention on the Mac and on iOS that password managers tag
// confidential data with the flavor "org.nspasteboard.ConcealedType". Obey this
// convention. See http://nspasteboard.org/ for more info.
NSString* const kUTTypeConfidentialData = @"org.nspasteboard.ConcealedType";

}  // namespace ui