// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_OZONE_PUBLIC_PLATFORM_CLIPBOARD_H_ #define UI_OZONE_PUBLIC_PLATFORM_CLIPBOARD_H_ #include <string> #include <unordered_map> #include <vector> #include "base/component_export.h" #include "base/functional/callback_forward.h" #include "base/memory/ref_counted_memory.h" #include "ui/base/clipboard/clipboard_buffer.h" namespace ui { // Allows Chrome controls and windows to exchange data with each other and other // applications, e.g., to copy and paste. // // In environments that have multiple clipboards (like Linux X11 or OS X, see // ui::ClipboardBuffer), the implementation should provide a separate data // buffer for each system clipboard. When data is requested or offered, the // caller specifies which buffer to use by providing the |buffer| parameter. class COMPONENT_EXPORT(OZONE_BASE) PlatformClipboard { … }; } // namespace ui #endif // UI_OZONE_PUBLIC_PLATFORM_CLIPBOARD_H_