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

Side by Side Diff: third_party/WebKit/Source/core/fetch/FontResource.h

Issue 1893233002: WebFonts: reset m_loadLimitState on memory cache revalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add a LayoutTest Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 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 30 matching lines...) Expand all
41 class FontResourceClient; 41 class FontResourceClient;
42 42
43 class FontResource final : public Resource { 43 class FontResource final : public Resource {
44 public: 44 public:
45 using ClientType = FontResourceClient; 45 using ClientType = FontResourceClient;
46 46
47 static FontResource* fetch(FetchRequest&, ResourceFetcher*); 47 static FontResource* fetch(FetchRequest&, ResourceFetcher*);
48 ~FontResource() override; 48 ~FontResource() override;
49 49
50 void didAddClient(ResourceClient*) override; 50 void didAddClient(ResourceClient*) override;
51 void prepareToRevalidate() override;
51 52
52 void allClientsAndObserversRemoved() override; 53 void allClientsAndObserversRemoved() override;
53 void startLoadLimitTimersIfNeeded(); 54 void startLoadLimitTimersIfNeeded();
54 55
55 void setCORSFailed() override { m_corsFailed = true; } 56 void setCORSFailed() override { m_corsFailed = true; }
56 bool isCORSFailed() const { return m_corsFailed; } 57 bool isCORSFailed() const { return m_corsFailed; }
57 String otsParsingMessage() const { return m_otsParsingMessage; } 58 String otsParsingMessage() const { return m_otsParsingMessage; }
58 59
59 bool ensureCustomFontData(); 60 bool ensureCustomFontData();
60 FontPlatformData platformDataFromCustomData(float size, bool bold, bool ital ic, FontOrientation = FontOrientation::Horizontal); 61 FontPlatformData platformDataFromCustomData(float size, bool bold, bool ital ic, FontOrientation = FontOrientation::Horizontal);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == FontType; } 100 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == FontType; }
100 ResourceClientType getResourceClientType() const final { return FontType; } 101 ResourceClientType getResourceClientType() const final { return FontType; }
101 virtual void fontLoaded(FontResource*) {} 102 virtual void fontLoaded(FontResource*) {}
102 virtual void fontLoadShortLimitExceeded(FontResource*) {} 103 virtual void fontLoadShortLimitExceeded(FontResource*) {}
103 virtual void fontLoadLongLimitExceeded(FontResource*) {} 104 virtual void fontLoadLongLimitExceeded(FontResource*) {}
104 }; 105 };
105 106
106 } // namespace blink 107 } // namespace blink
107 108
108 #endif 109 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698