| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "platform/testing/FontTestHelpers.h" | 5 #include "platform/testing/FontTestHelpers.h" |
| 6 | 6 |
| 7 #include "platform/fonts/Font.h" | 7 #include "platform/fonts/Font.h" |
| 8 #include "platform/fonts/FontCustomPlatformData.h" | 8 #include "platform/fonts/FontCustomPlatformData.h" |
| 9 #include "platform/fonts/FontDescription.h" | 9 #include "platform/fonts/FontDescription.h" |
| 10 #include "platform/fonts/FontSelector.h" | 10 #include "platform/fonts/FontSelector.h" |
| 11 #include "platform/testing/UnitTestHelpers.h" | 11 #include "platform/testing/UnitTestHelpers.h" |
| 12 #include "wtf/PassRefPtr.h" | 12 #include "platform/wtf/PassRefPtr.h" |
| 13 #include "wtf/RefPtr.h" | 13 #include "platform/wtf/RefPtr.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 namespace testing { | 16 namespace testing { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 class TestFontSelector : public FontSelector { | 20 class TestFontSelector : public FontSelector { |
| 21 public: | 21 public: |
| 22 static TestFontSelector* create(const String& path) { | 22 static TestFontSelector* create(const String& path) { |
| 23 RefPtr<SharedBuffer> fontBuffer = testing::readFromFile(path); | 23 RefPtr<SharedBuffer> fontBuffer = testing::readFromFile(path); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 fontDescription.setSpecifiedSize(size); | 66 fontDescription.setSpecifiedSize(size); |
| 67 fontDescription.setComputedSize(size); | 67 fontDescription.setComputedSize(size); |
| 68 | 68 |
| 69 Font font(fontDescription); | 69 Font font(fontDescription); |
| 70 font.update(TestFontSelector::create(fontPath)); | 70 font.update(TestFontSelector::create(fontPath)); |
| 71 return font; | 71 return font; |
| 72 } | 72 } |
| 73 | 73 |
| 74 } // namespace testing | 74 } // namespace testing |
| 75 } // namespace blink | 75 } // namespace blink |
| OLD | NEW |