Revert of media-internals: Simplify the code path for creating a media log entry...
[chromium-blink-merge.git] / ui / base / clipboard / clipboard_unittest.cc
blob96bf40b4ec4dd6882f910a6ff38acb92fb5a1741
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/base/clipboard/clipboard.h"
7 #include "testing/gtest/include/gtest/gtest.h"
9 namespace ui {
11 struct PlatformClipboardTraits {
12 static Clipboard* Create() { return Clipboard::GetForCurrentThread(); }
14 static void Destroy(Clipboard* clipboard) {
15 ASSERT_EQ(Clipboard::GetForCurrentThread(), clipboard);
16 Clipboard::DestroyClipboardForCurrentThread();
20 typedef PlatformClipboardTraits TypesToTest;
22 } // namespace ui
24 #include "ui/base/clipboard/clipboard_test_template.h"