blob: 08b2c175ffb7424eb33864e3c84af97dcc8facf7 [file] [log] [blame]
// Copyright 2014 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.h"
#include "testing/gtest/include/gtest/gtest.h"
#if defined(USE_AURA)
#include "ui/events/platform/platform_event_source.h"
#endif
namespace ui {
struct PlatformClipboardTraits {
#if defined(USE_AURA)
static std::unique_ptr<PlatformEventSource> GetEventSource() {
return PlatformEventSource::CreateDefault();
}
#endif
static Clipboard* Create() { return Clipboard::GetForCurrentThread(); }
static void Destroy(Clipboard* clipboard) {
ASSERT_EQ(Clipboard::GetForCurrentThread(), clipboard);
Clipboard::DestroyClipboardForCurrentThread();
}
};
typedef PlatformClipboardTraits TypesToTest;
} // namespace ui
#include "ui/base/clipboard/clipboard_test_template.h"