Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2118)

Unified Diff: ppapi/tests/test_flash_clipboard.h

Issue 8365017: Convert the flash clipboard API to thunk system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/tests/test_flash_clipboard.h
diff --git a/ppapi/tests/test_flash_clipboard.h b/ppapi/tests/test_flash_clipboard.h
new file mode 100644
index 0000000000000000000000000000000000000000..eacf933a61a22afd7d7cb291b7bbf441774231b1
--- /dev/null
+++ b/ppapi/tests/test_flash_clipboard.h
@@ -0,0 +1,28 @@
+// Copyright (c) 2011 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.
+
+#ifndef PPAPI_TESTS_TEST_FLASH_CLIPBOARD_H_
+#define PPAPI_TESTS_TEST_FLASH_CLIPBOARD_H_
+
+#include <string>
+
+#include "ppapi/c/private/ppb_flash_clipboard.h"
+#include "ppapi/tests/test_case.h"
+#include "ppapi/tests/test_utils.h"
+
+class TestFlashClipboard : public TestCase {
+ public:
+ explicit TestFlashClipboard(TestingInstance* instance);
+
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTest();
+
+ private:
+ std::string TestReadWrite();
+
+ const PPB_Flash_Clipboard* clipboard_interface_;
+};
+
+#endif // PAPPI_TESTS_TEST_FLASH_FULLSCREEN_H_

Powered by Google App Engine
This is Rietveld 408576698