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

Side by Side Diff: ppapi/tests/test_browser_font.h

Issue 10658037: Implement right-to-left text rendering in Pepper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: <PATCH DESCRIPTION HERE> Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_TESTS_TEST_BROWSER_FONT_H_ 5 #ifndef PPAPI_TESTS_TEST_BROWSER_FONT_H_
6 #define PPAPI_TESTS_TEST_BROWSER_FONT_H_ 6 #define PPAPI_TESTS_TEST_BROWSER_FONT_H_
7 7
8 #include "ppapi/tests/test_case.h" 8 #include "ppapi/tests/test_case.h"
9 9
10 class TestBrowserFont : public TestCase { 10 class TestBrowserFont : public TestCase {
11 public: 11 public:
12 TestBrowserFont(TestingInstance* instance) : TestCase(instance) {} 12 TestBrowserFont(TestingInstance* instance) : TestCase(instance) {}
13 13
14 // TestCase implementation. 14 // TestCase implementation.
15 virtual bool Init(); 15 virtual bool Init();
16 virtual void RunTests(const std::string& filter); 16 virtual void RunTests(const std::string& filter);
17 17
18 private: 18 private:
19 std::string TestFontFamilies(); 19 std::string TestFontFamilies();
20 std::string TestMeasure(); 20 std::string TestMeasure();
21 std::string TestMeasureRTL();
21 std::string TestCharPos(); 22 std::string TestCharPos();
23 std::string TestCharPosRTL();
22 std::string TestDraw(); 24 std::string TestDraw();
23 }; 25 };
24 26
25 #endif // PPAPI_TESTS_TEST_BROWSER_FONT_H_ 27 #endif // PPAPI_TESTS_TEST_BROWSER_FONT_H_
OLDNEW
« no previous file with comments | « ppapi/shared_impl/private/ppb_browser_font_trusted_shared.cc ('k') | ppapi/tests/test_browser_font.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698