Lines Matching refs:enabled
722 /* [retval][out] */ BOOL* enabled)
724 *enabled = boolValueForKey(CFSTR(WebKitUserStyleSheetEnabledPreferenceKey));
729 /* [in] */ BOOL enabled)
731 setBoolValue(CFSTR(WebKitUserStyleSheetEnabledPreferenceKey), enabled);
750 /* [retval][out] */ BOOL* enabled)
752 *enabled = boolValueForKey(CFSTR(WebKitJavaEnabledPreferenceKey));
757 /* [in] */ BOOL enabled)
759 setBoolValue(CFSTR(WebKitJavaEnabledPreferenceKey), enabled);
764 /* [retval][out] */ BOOL* enabled)
766 *enabled = boolValueForKey(CFSTR(WebKitJavaScriptEnabledPreferenceKey));
771 /* [in] */ BOOL enabled)
773 setBoolValue(CFSTR(WebKitJavaScriptEnabledPreferenceKey), enabled);
778 /* [retval][out] */ BOOL* enabled)
780 *enabled = boolValueForKey(CFSTR(WebKitWebSecurityEnabledPreferenceKey));
785 /* [in] */ BOOL enabled)
787 setBoolValue(CFSTR(WebKitWebSecurityEnabledPreferenceKey), enabled);
820 /* [retval][out] */ BOOL* enabled)
822 *enabled = boolValueForKey(CFSTR(WebKitJavaScriptCanAccessClipboardPreferenceKey));
827 /* [in] */ BOOL enabled)
829 setBoolValue(CFSTR(WebKitJavaScriptCanAccessClipboardPreferenceKey), enabled);
834 /* [retval][out] */ BOOL* enabled)
836 *enabled = boolValueForKey(CFSTR(WebKitXSSAuditorEnabledPreferenceKey));
841 /* [in] */ BOOL enabled)
843 setBoolValue(CFSTR(WebKitXSSAuditorEnabledPreferenceKey), enabled);
848 /* [retval][out] */ BOOL* enabled)
850 *enabled = boolValueForKey(CFSTR(WebKitFrameFlatteningEnabledPreferenceKey));
855 /* [in] */ BOOL enabled)
857 setBoolValue(CFSTR(WebKitFrameFlatteningEnabledPreferenceKey), enabled);
862 /* [retval][out] */ BOOL* enabled)
864 *enabled = boolValueForKey(CFSTR(WebKitJavaScriptCanOpenWindowsAutomaticallyPreferenceKey));
869 /* [in] */ BOOL enabled)
871 setBoolValue(CFSTR(WebKitJavaScriptCanOpenWindowsAutomaticallyPreferenceKey), enabled);
876 /* [retval][out] */ BOOL* enabled)
878 *enabled = boolValueForKey(CFSTR(WebKitPluginsEnabledPreferenceKey));
883 /* [in] */ BOOL enabled)
885 setBoolValue(CFSTR(WebKitPluginsEnabledPreferenceKey), enabled);
890 /* [retval][out] */ BOOL* enabled)
892 *enabled = boolValueForKey(CFSTR(WebKitAllowAnimatedImagesPreferenceKey));
897 /* [in] */ BOOL enabled)
899 setBoolValue(CFSTR(WebKitAllowAnimatedImagesPreferenceKey), enabled);
904 /* [retval][out] */ BOOL* enabled)
906 *enabled = boolValueForKey(CFSTR(WebKitAllowAnimatedImageLoopingPreferenceKey));
911 /* [in] */ BOOL enabled)
913 setBoolValue(CFSTR(WebKitAllowAnimatedImageLoopingPreferenceKey), enabled);
918 /* [in] */ BOOL enabled)
920 setBoolValue(CFSTR(WebKitDisplayImagesKey), enabled);
925 /* [retval][out] */ BOOL* enabled)
927 *enabled = boolValueForKey(CFSTR(WebKitDisplayImagesKey));
932 /* [in] */ BOOL enabled)
934 setBoolValue(CFSTR(WebKitLoadSiteIconsKey), enabled);
939 /* [retval][out] */ BOOL* enabled)
941 *enabled = boolValueForKey(CFSTR(WebKitLoadSiteIconsKey));
946 /* [in] */ BOOL enabled)
948 m_autoSaves = !!enabled;
953 /* [retval][out] */ BOOL* enabled)
955 *enabled = m_autoSaves ? TRUE : FALSE;
960 /* [in] */ BOOL enabled)
962 setBoolValue(CFSTR(WebKitShouldPrintBackgroundsPreferenceKey), enabled);
967 /* [retval][out] */ BOOL* enabled)
969 *enabled = boolValueForKey(CFSTR(WebKitShouldPrintBackgroundsPreferenceKey));
974 /* [in] */ BOOL enabled)
976 setBoolValue(CFSTR(WebKitPrivateBrowsingEnabledPreferenceKey), enabled);
981 /* [retval][out] */ BOOL* enabled)
983 *enabled = boolValueForKey(CFSTR(WebKitPrivateBrowsingEnabledPreferenceKey));
988 /* [in] */ BOOL enabled)
990 setBoolValue(CFSTR(WebKitTabToLinksPreferenceKey), enabled);
995 /* [retval][out] */ BOOL* enabled)
997 *enabled = boolValueForKey(CFSTR(WebKitTabToLinksPreferenceKey));
1016 /* [retval][out] */ BOOL* enabled)
1018 *enabled = boolValueForKey(CFSTR(WebKitTextAreasAreResizablePreferenceKey));
1023 /* [in] */ BOOL enabled)
1025 setBoolValue(CFSTR(WebKitTextAreasAreResizablePreferenceKey), enabled);
1079 HRESULT WebPreferences::iconDatabaseEnabled(BOOL* enabled)//location)
1081 *enabled = boolValueForKey(CFSTR(WebKitIconDatabaseEnabledPreferenceKey));
1085 HRESULT WebPreferences::setIconDatabaseEnabled(BOOL enabled )//location)
1087 setBoolValue(CFSTR(WebKitIconDatabaseEnabledPreferenceKey), enabled);
1168 /* [in] */ BOOL* enabled)
1170 *enabled = boolValueForKey(CFSTR(WebKitHyperlinkAuditingEnabledPreferenceKey));
1175 /* [retval][out] */ BOOL enabled)
1177 setBoolValue(CFSTR(WebKitHyperlinkAuditingEnabledPreferenceKey), enabled);
1199 HRESULT WebPreferences::continuousSpellCheckingEnabled(BOOL* enabled)
1201 *enabled = boolValueForKey(CFSTR(WebContinuousSpellCheckingEnabledPreferenceKey));
1205 HRESULT WebPreferences::setContinuousSpellCheckingEnabled(BOOL enabled)
1207 setBoolValue(CFSTR(WebContinuousSpellCheckingEnabledPreferenceKey), enabled);
1211 HRESULT WebPreferences::grammarCheckingEnabled(BOOL* enabled)
1213 *enabled = boolValueForKey(CFSTR(WebGrammarCheckingEnabledPreferenceKey));
1217 HRESULT WebPreferences::setGrammarCheckingEnabled(BOOL enabled)
1219 setBoolValue(CFSTR(WebGrammarCheckingEnabledPreferenceKey), enabled);
1223 HRESULT WebPreferences::allowContinuousSpellChecking(BOOL* enabled)
1225 *enabled = boolValueForKey(CFSTR(AllowContinuousSpellCheckingPreferenceKey));
1229 HRESULT WebPreferences::setAllowContinuousSpellChecking(BOOL enabled)
1231 setBoolValue(CFSTR(AllowContinuousSpellCheckingPreferenceKey), enabled);
1235 HRESULT WebPreferences::isDOMPasteAllowed(BOOL* enabled)
1237 *enabled = boolValueForKey(CFSTR(WebKitDOMPasteAllowedPreferenceKey));
1241 HRESULT WebPreferences::setDOMPasteAllowed(BOOL enabled)
1243 setBoolValue(CFSTR(WebKitDOMPasteAllowedPreferenceKey), enabled);
1286 HRESULT WebPreferences::setDeveloperExtrasEnabled(BOOL enabled)
1288 setBoolValue(CFSTR(WebKitDeveloperExtrasEnabledPreferenceKey), enabled);
1292 HRESULT WebPreferences::developerExtrasEnabled(BOOL* enabled)
1294 if (!enabled)
1297 *enabled = boolValueForKey(CFSTR(WebKitDeveloperExtrasEnabledPreferenceKey));
1321 HRESULT STDMETHODCALLTYPE WebPreferences::setAuthorAndUserStylesEnabled(BOOL enabled)
1323 setBoolValue(CFSTR(WebKitAuthorAndUserStylesEnabledPreferenceKey), enabled);
1327 HRESULT STDMETHODCALLTYPE WebPreferences::authorAndUserStylesEnabled(BOOL* enabled)
1329 if (!enabled)
1332 *enabled = boolValueForKey(CFSTR(WebKitAuthorAndUserStylesEnabledPreferenceKey));
1336 HRESULT WebPreferences::inApplicationChromeMode(BOOL* enabled)
1338 *enabled = boolValueForKey(CFSTR(WebKitApplicationChromeModePreferenceKey));
1342 HRESULT WebPreferences::setApplicationChromeMode(BOOL enabled)
1344 setBoolValue(CFSTR(WebKitApplicationChromeModePreferenceKey), enabled);
1348 HRESULT STDMETHODCALLTYPE WebPreferences::setOfflineWebApplicationCacheEnabled(BOOL enabled)
1350 setBoolValue(CFSTR(WebKitOfflineWebApplicationCacheEnabledPreferenceKey), enabled);
1354 HRESULT STDMETHODCALLTYPE WebPreferences::offlineWebApplicationCacheEnabled(BOOL* enabled)
1356 *enabled = boolValueForKey(CFSTR(WebKitOfflineWebApplicationCacheEnabledPreferenceKey));
1360 HRESULT STDMETHODCALLTYPE WebPreferences::setDatabasesEnabled(BOOL enabled)
1362 setBoolValue(CFSTR(WebKitDatabasesEnabledPreferenceKey), enabled);
1366 HRESULT STDMETHODCALLTYPE WebPreferences::databasesEnabled(BOOL* enabled)
1368 *enabled = boolValueForKey(CFSTR(WebKitDatabasesEnabledPreferenceKey));
1372 HRESULT STDMETHODCALLTYPE WebPreferences::setLocalStorageEnabled(BOOL enabled)
1374 setBoolValue(CFSTR(WebKitLocalStorageEnabledPreferenceKey), enabled);
1378 HRESULT STDMETHODCALLTYPE WebPreferences::localStorageEnabled(BOOL* enabled)
1380 *enabled = boolValueForKey(CFSTR(WebKitLocalStorageEnabledPreferenceKey));
1396 HRESULT STDMETHODCALLTYPE WebPreferences::setExperimentalNotificationsEnabled(BOOL enabled)
1398 setBoolValue(CFSTR(WebKitExperimentalNotificationsEnabledPreferenceKey), enabled);
1402 HRESULT STDMETHODCALLTYPE WebPreferences::experimentalNotificationsEnabled(BOOL* enabled)
1404 *enabled = boolValueForKey(CFSTR(WebKitExperimentalNotificationsEnabledPreferenceKey));
1455 HRESULT WebPreferences::setAcceleratedCompositingEnabled(BOOL enabled)
1457 setBoolValue(CFSTR(WebKitAcceleratedCompositingEnabledPreferenceKey), enabled);
1461 HRESULT WebPreferences::acceleratedCompositingEnabled(BOOL* enabled)
1464 *enabled = CACFLayerTreeHost::acceleratedCompositingAvailable() && boolValueForKey(CFSTR(WebKitAcceleratedCompositingEnabledPreferenceKey));
1466 *enabled = FALSE;
1471 HRESULT WebPreferences::showDebugBorders(BOOL* enabled)
1473 *enabled = boolValueForKey(CFSTR(WebKitShowDebugBordersPreferenceKey));
1477 HRESULT WebPreferences::setShowDebugBorders(BOOL enabled)
1479 setBoolValue(CFSTR(WebKitShowDebugBordersPreferenceKey), enabled);
1483 HRESULT WebPreferences::showRepaintCounter(BOOL* enabled)
1485 *enabled = boolValueForKey(CFSTR(WebKitShowRepaintCounterPreferenceKey));
1489 HRESULT WebPreferences::setShowRepaintCounter(BOOL enabled)
1491 setBoolValue(CFSTR(WebKitShowRepaintCounterPreferenceKey), enabled);
1495 HRESULT WebPreferences::setCustomDragCursorsEnabled(BOOL enabled)
1497 setBoolValue(CFSTR(WebKitCustomDragCursorsEnabledPreferenceKey), enabled);
1501 HRESULT WebPreferences::customDragCursorsEnabled(BOOL* enabled)
1503 *enabled = boolValueForKey(CFSTR(WebKitCustomDragCursorsEnabledPreferenceKey));
1507 enabled)
1509 setBoolValue(CFSTR(WebKitDNSPrefetchingEnabledPreferenceKey), enabled);
1513 HRESULT WebPreferences::isDNSPrefetchingEnabled(BOOL* enabled)
1515 *enabled = boolValueForKey(CFSTR(WebKitDNSPrefetchingEnabledPreferenceKey));
1519 HRESULT WebPreferences::memoryInfoEnabled(BOOL* enabled)
1521 *enabled = boolValueForKey(CFSTR(WebKitMemoryInfoEnabledPreferenceKey));
1525 HRESULT WebPreferences::setMemoryInfoEnabled(BOOL enabled)
1527 setBoolValue(CFSTR(WebKitMemoryInfoEnabledPreferenceKey), enabled);