blob: 2f0f70347a1d8a2066f40dc9579d884db4148559 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_PICKER_PICKER_TEST_UTIL_H_
#define ASH_PICKER_PICKER_TEST_UTIL_H_
#include <string>
#include "ash/ash_export.h"
namespace ui {
class Clipboard;
}
namespace ash {
// Returns the HTML contents of `clipboard`.
ASH_EXPORT std::u16string ReadHtmlFromClipboard(ui::Clipboard* clipboard);
} // namespace ash
#endif