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

Side by Side Diff: Source/platform/fonts/FontData.h

Issue 171823002: Make text visible when font loading takes longer than 3 seconds (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 9 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
« no previous file with comments | « Source/platform/fonts/Font.cpp ('k') | Source/platform/fonts/FontFallbackList.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 virtual ~FontData(); 49 virtual ~FontData();
50 50
51 virtual const SimpleFontData* fontDataForCharacter(UChar32) const = 0; 51 virtual const SimpleFontData* fontDataForCharacter(UChar32) const = 0;
52 virtual bool isCustomFont() const = 0; 52 virtual bool isCustomFont() const = 0;
53 virtual bool isLoading() const = 0; 53 virtual bool isLoading() const = 0;
54 // Returns whether this is a temporary font data for a custom font which is not yet loaded. 54 // Returns whether this is a temporary font data for a custom font which is not yet loaded.
55 virtual bool isLoadingFallback() const = 0; 55 virtual bool isLoadingFallback() const = 0;
56 virtual bool isSegmented() const = 0; 56 virtual bool isSegmented() const = 0;
57 virtual bool shouldSkipDrawing() const = 0;
57 58
58 void setMaxGlyphPageTreeLevel(unsigned level) const { m_maxGlyphPageTreeLeve l = level; } 59 void setMaxGlyphPageTreeLevel(unsigned level) const { m_maxGlyphPageTreeLeve l = level; }
59 unsigned maxGlyphPageTreeLevel() const { return m_maxGlyphPageTreeLevel; } 60 unsigned maxGlyphPageTreeLevel() const { return m_maxGlyphPageTreeLevel; }
60 61
61 #ifndef NDEBUG 62 #ifndef NDEBUG
62 virtual String description() const = 0; 63 virtual String description() const = 0;
63 #endif 64 #endif
64 65
65 private: 66 private:
66 mutable unsigned m_maxGlyphPageTreeLevel; 67 mutable unsigned m_maxGlyphPageTreeLevel;
67 }; 68 };
68 69
69 } // namespace WebCore 70 } // namespace WebCore
70 71
71 #endif // FontData_h 72 #endif // FontData_h
OLDNEW
« no previous file with comments | « Source/platform/fonts/Font.cpp ('k') | Source/platform/fonts/FontFallbackList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698