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

Side by Side Diff: third_party/WebKit/Source/platform/LayoutTestSupport.h

Issue 2445323007: Remove AlwaysUseComplexText runtime flag (status=stable) (Closed)
Patch Set: Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 28 matching lines...) Expand all
39 class LayoutTestSupport { 39 class LayoutTestSupport {
40 STATIC_ONLY(LayoutTestSupport); 40 STATIC_ONLY(LayoutTestSupport);
41 41
42 public: 42 public:
43 PLATFORM_EXPORT static bool isRunningLayoutTest(); 43 PLATFORM_EXPORT static bool isRunningLayoutTest();
44 PLATFORM_EXPORT static void setIsRunningLayoutTest(bool); 44 PLATFORM_EXPORT static void setIsRunningLayoutTest(bool);
45 PLATFORM_EXPORT static bool isMockThemeEnabledForTest(); 45 PLATFORM_EXPORT static bool isMockThemeEnabledForTest();
46 PLATFORM_EXPORT static void setMockThemeEnabledForTest(bool); 46 PLATFORM_EXPORT static void setMockThemeEnabledForTest(bool);
47 PLATFORM_EXPORT static bool isFontAntialiasingEnabledForTest(); 47 PLATFORM_EXPORT static bool isFontAntialiasingEnabledForTest();
48 PLATFORM_EXPORT static void setFontAntialiasingEnabledForTest(bool); 48 PLATFORM_EXPORT static void setFontAntialiasingEnabledForTest(bool);
49 PLATFORM_EXPORT static bool alwaysUseComplexTextForTest();
50 PLATFORM_EXPORT static void setAlwaysUseComplexTextForTest(bool);
51 }; 49 };
52 50
53 } // namespace blink 51 } // namespace blink
54 52
55 #endif // LayoutTestSupport_h 53 #endif // LayoutTestSupport_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698