| // 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 GURL& url) |
| : type_(EndpointType::kUrl), url_(url) {} |
| |
| ClipboardDataEndpoint::ClipboardDataEndpoint(EndpointType type) |
| : type_(type), url_(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 url_ == other.url_ && type_ == other.type_; |
| } |
| |
| ClipboardDataEndpoint::~ClipboardDataEndpoint() = default; |
| |
| } // namespace ui |