blob: 8fbab3cbdbe5902d7c46fcb32571799905804229 (
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
27
28
29
30
31
32
33
34
|
// Copyright 2020 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_data_endpoint.h"
#include "base/check_op.h"
#include "base/optional.h"
#include "url/origin.h"
namespace ui {
ClipboardDataEndpoint::ClipboardDataEndpoint(const url::Origin& origin)
: type_(EndpointType::kUrl), origin_(origin) {}
ClipboardDataEndpoint::ClipboardDataEndpoint(EndpointType type)
: type_(type), origin_(base::nullopt) {
DCHECK_NE(type, EndpointType::kUrl);
}
ClipboardDataEndpoint::ClipboardDataEndpoint(
const ClipboardDataEndpoint& other) = default;
ClipboardDataEndpoint::ClipboardDataEndpoint(ClipboardDataEndpoint&& other) =
default;
bool ClipboardDataEndpoint::operator==(
const ClipboardDataEndpoint& other) const {
return origin_ == other.origin_ && type_ == other.type_;
}
ClipboardDataEndpoint::~ClipboardDataEndpoint() = default;
} // namespace ui
|