Android: Remove unneeded Compositor::SetNeedsRedraw()
[chromium-blink-merge.git] / ppapi / tests / test_browser_font.h
blobc166212b93aaaefd785ce53a5603f49c0fca2f62
1 // Copyright (c) 2012 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 #ifndef PPAPI_TESTS_TEST_BROWSER_FONT_H_
6 #define PPAPI_TESTS_TEST_BROWSER_FONT_H_
8 #include "ppapi/tests/test_case.h"
10 class TestBrowserFont : public TestCase {
11 public:
12 TestBrowserFont(TestingInstance* instance) : TestCase(instance) {}
14 // TestCase implementation.
15 virtual bool Init();
16 virtual void RunTests(const std::string& filter);
18 private:
19 std::string TestFontFamilies();
20 std::string TestMeasure();
21 std::string TestMeasureRTL();
22 std::string TestCharPos();
23 std::string TestCharPosRTL();
24 std::string TestDraw();
27 #endif // PPAPI_TESTS_TEST_BROWSER_FONT_H_