servo: Remove unused font_cache.rs and font_list_handle.rs.
servo: Remove unused font_cache.rs and font_list_handle.rs.
Source-Repo:
https://github.com/servo/servo
Source-Revision:
a2589dbfec134ee25e3ea59b5b2a539d4a24d7df
deleted file mode 100644
--- a/servo/src/servo/gfx/font_cache.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-use font::{Font, FontStyle, FontWeight300};
-use native::{FontHandle, FontContext};
-
-// Font cache that reuses gfx::Font instances.
-
-struct FontCache {
- fctx: @FontContext,
- mut cached_font: Option<@Font>
-}
-
-impl FontCache {
- static pub fn new(fctx: @FontContext) -> FontCache {
- FontCache {
- fctx: fctx,
- cached_font: None
- }
- }
-
- pub fn get_test_font(@self) -> @Font {
-
-
- return match self.cached_font {
- Some(font) => font,
- None => match self.get_font(&dummy_style) {
- Ok(font) => { self.cached_font = Some(font); font }
- Err(*) => fail
- }
- }
- }
-
- pub fn get_font(@self, style: &FontStyle) -> Result<@Font, ()> {
- self.create_font(style)
- }
-}
-*/
\ No newline at end of file