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

Unified Diff: third_party/WebKit/WebCore/page/Settings.h

Issue 99019: Disable web-fonts, WebKit side.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/branches/172/src/
Patch Set: Created 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/WebCore/page/Settings.h
===================================================================
--- third_party/WebKit/WebCore/page/Settings.h (revision 14517)
+++ third_party/WebKit/WebCore/page/Settings.h (working copy)
@@ -214,6 +214,9 @@
void setAllowScriptsToCloseWindows(bool);
bool allowScriptsToCloseWindows() const { return m_allowScriptsToCloseWindows; }
+ void setRemoteFontEnabled(bool);
+ bool remoteFontEnabled() const { return m_remoteFontEnabled; }
+
private:
Page* m_page;
@@ -270,6 +273,7 @@
bool m_usesEncodingDetector : 1;
size_t m_maximumDecodedImageSize;
bool m_allowScriptsToCloseWindows : 1;
+ bool m_remoteFontEnabled : 1;
#if USE(SAFARI_THEME)
static bool gShouldPaintNativeControls;

Powered by Google App Engine
This is Rietveld 408576698