|
Lines 152-160
namespace WebCore {
a/Source/WebCore/page/Settings.h_sec1
|
| 152 |
void setImagesEnabled(bool); |
152 |
void setImagesEnabled(bool); |
| 153 |
bool areImagesEnabled() const { return m_areImagesEnabled; } |
153 |
bool areImagesEnabled() const { return m_areImagesEnabled; } |
| 154 |
|
154 |
|
| 155 |
void setMediaEnabled(bool); |
|
|
| 156 |
bool isMediaEnabled() const { return m_isMediaEnabled; } |
| 157 |
|
| 158 |
void setPluginsEnabled(bool); |
155 |
void setPluginsEnabled(bool); |
| 159 |
bool arePluginsEnabled() const { return m_arePluginsEnabled; } |
156 |
bool arePluginsEnabled() const { return m_arePluginsEnabled; } |
| 160 |
|
157 |
|
|
Lines 186-194
namespace WebCore {
a/Source/WebCore/page/Settings.h_sec2
|
| 186 |
void setNeedsAdobeFrameReloadingQuirk(bool); |
183 |
void setNeedsAdobeFrameReloadingQuirk(bool); |
| 187 |
bool needsAcrobatFrameReloadingQuirk() const { return m_needsAdobeFrameReloadingQuirk; } |
184 |
bool needsAcrobatFrameReloadingQuirk() const { return m_needsAdobeFrameReloadingQuirk; } |
| 188 |
|
185 |
|
| 189 |
void setDOMPasteAllowed(bool); |
|
|
| 190 |
bool isDOMPasteAllowed() const { return m_isDOMPasteAllowed; } |
| 191 |
|
| 192 |
static void setDefaultMinDOMTimerInterval(double); // Interval specified in seconds. |
186 |
static void setDefaultMinDOMTimerInterval(double); // Interval specified in seconds. |
| 193 |
static double defaultMinDOMTimerInterval(); |
187 |
static double defaultMinDOMTimerInterval(); |
| 194 |
|
188 |
|
|
Lines 213-221
namespace WebCore {
a/Source/WebCore/page/Settings.h_sec3
|
| 213 |
void setFontRenderingMode(FontRenderingMode mode); |
207 |
void setFontRenderingMode(FontRenderingMode mode); |
| 214 |
FontRenderingMode fontRenderingMode() const; |
208 |
FontRenderingMode fontRenderingMode() const; |
| 215 |
|
209 |
|
| 216 |
void setApplicationChromeMode(bool); |
|
|
| 217 |
bool inApplicationChromeMode() const { return m_inApplicationChromeMode; } |
| 218 |
|
| 219 |
void setCSSCustomFilterEnabled(bool enabled) { m_isCSSCustomFilterEnabled = enabled; } |
210 |
void setCSSCustomFilterEnabled(bool enabled) { m_isCSSCustomFilterEnabled = enabled; } |
| 220 |
bool isCSSCustomFilterEnabled() const { return m_isCSSCustomFilterEnabled; } |
211 |
bool isCSSCustomFilterEnabled() const { return m_isCSSCustomFilterEnabled; } |
| 221 |
|
212 |
|
|
Lines 339-354
namespace WebCore {
a/Source/WebCore/page/Settings.h_sec4
|
| 339 |
bool m_loadsImagesAutomatically : 1; |
330 |
bool m_loadsImagesAutomatically : 1; |
| 340 |
bool m_privateBrowsingEnabled : 1; |
331 |
bool m_privateBrowsingEnabled : 1; |
| 341 |
bool m_areImagesEnabled : 1; |
332 |
bool m_areImagesEnabled : 1; |
| 342 |
bool m_isMediaEnabled : 1; |
|
|
| 343 |
bool m_arePluginsEnabled : 1; |
333 |
bool m_arePluginsEnabled : 1; |
| 344 |
bool m_isScriptEnabled : 1; |
334 |
bool m_isScriptEnabled : 1; |
| 345 |
bool m_textAreasAreResizable : 1; |
335 |
bool m_textAreasAreResizable : 1; |
| 346 |
bool m_needsAdobeFrameReloadingQuirk : 1; |
336 |
bool m_needsAdobeFrameReloadingQuirk : 1; |
| 347 |
bool m_isDOMPasteAllowed : 1; |
|
|
| 348 |
bool m_usesPageCache : 1; |
337 |
bool m_usesPageCache : 1; |
| 349 |
bool m_authorAndUserStylesEnabled : 1; |
338 |
bool m_authorAndUserStylesEnabled : 1; |
| 350 |
unsigned m_fontRenderingMode : 1; |
339 |
unsigned m_fontRenderingMode : 1; |
| 351 |
bool m_inApplicationChromeMode : 1; |
|
|
| 352 |
bool m_isCSSCustomFilterEnabled : 1; |
340 |
bool m_isCSSCustomFilterEnabled : 1; |
| 353 |
#if ENABLE(CSS_STICKY_POSITION) |
341 |
#if ENABLE(CSS_STICKY_POSITION) |
| 354 |
bool m_cssStickyPositionEnabled : 1; |
342 |
bool m_cssStickyPositionEnabled : 1; |