Index: ppapi/tests/test_browser_font.h |
diff --git a/ppapi/tests/test_browser_font.h b/ppapi/tests/test_browser_font.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eba1c7e287e3142fc3bc7fdfe5adcabaac780cff |
--- /dev/null |
+++ b/ppapi/tests/test_browser_font.h |
@@ -0,0 +1,25 @@ |
+// Copyright (c) 2012 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_BROWSER_FONT_H_ |
+#define PPAPI_TESTS_TEST_BROWSER_FONT_H_ |
+ |
+#include "ppapi/tests/test_case.h" |
+ |
+class TestBrowserFont : public TestCase { |
+ public: |
+ TestBrowserFont(TestingInstance* instance) : TestCase(instance) {} |
+ |
+ // TestCase implementation. |
+ virtual bool Init(); |
+ virtual void RunTests(const std::string& filter); |
+ |
+ private: |
+ std::string TestFontFamilies(); |
+ std::string TestMeasure(); |
+ std::string TestCharPos(); |
+ std::string TestDraw(); |
+}; |
+ |
+#endif // PPAPI_TESTS_TEST_BROWSER_FONT_H_ |