Searched refs:preferences (Results 1 - 25 of 59) sorted by relevance

123

/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPreferences.h45 WK_EXPORT void WKPreferencesSetJavaScriptEnabled(WKPreferencesRef preferences, bool javaScriptEnabled);
46 WK_EXPORT bool WKPreferencesGetJavaScriptEnabled(WKPreferencesRef preferences);
49 WK_EXPORT void WKPreferencesSetLoadsImagesAutomatically(WKPreferencesRef preferences, bool loadsImagesAutomatically);
50 WK_EXPORT bool WKPreferencesGetLoadsImagesAutomatically(WKPreferencesRef preferences);
53 WK_EXPORT void WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference(WKPreferencesRef preferences, bool loadsSiteIconsIgnoringImageLoadingPreference);
54 WK_EXPORT bool WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference(WKPreferencesRef preferences);
57 WK_EXPORT void WKPreferencesSetOfflineWebApplicationCacheEnabled(WKPreferencesRef preferences, bool offlineWebApplicationCacheEnabled);
58 WK_EXPORT bool WKPreferencesGetOfflineWebApplicationCacheEnabled(WKPreferencesRef preferences);
61 WK_EXPORT void WKPreferencesSetLocalStorageEnabled(WKPreferencesRef preferences, bool localStorageEnabled);
62 WK_EXPORT bool WKPreferencesGetLocalStorageEnabled(WKPreferencesRef preferences);
[all...]
H A DWKPreferencesPrivate.h92 WK_EXPORT void WKPreferencesSetForceFTPDirectoryListings(WKPreferencesRef preferences, bool force);
93 WK_EXPORT bool WKPreferencesGetForceFTPDirectoryListings(WKPreferencesRef preferences);
96 WK_EXPORT void WKPreferencesSetFTPDirectoryTemplatePath(WKPreferencesRef preferences, WKStringRef path);
97 WK_EXPORT WKStringRef WKPreferencesCopyFTPDirectoryTemplatePath(WKPreferencesRef preferences);
100 WK_EXPORT void WKPreferencesSetWebArchiveDebugModeEnabled(WKPreferencesRef preferences, bool enabled);
101 WK_EXPORT bool WKPreferencesGetWebArchiveDebugModeEnabled(WKPreferencesRef preferences);
104 WK_EXPORT void WKPreferencesSetLocalFileContentSniffingEnabled(WKPreferencesRef preferences, bool enabled);
105 WK_EXPORT bool WKPreferencesGetLocalFileContentSniffingEnabled(WKPreferencesRef preferences);
108 WK_EXPORT void WKPreferencesSetPageCacheEnabled(WKPreferencesRef preferences, bool enabled);
109 WK_EXPORT bool WKPreferencesGetPageCacheEnabled(WKPreferencesRef preferences);
[all...]
H A DWKPageGroup.h41 WK_EXPORT void WKPageGroupSetPreferences(WKPageGroupRef pageGroup, WKPreferencesRef preferences);
H A DWKPageGroup.cpp58 return toAPI(toImpl(pageGroupRef)->preferences());
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_provider_mac.h16 // A provider delegate implementation that reads Mac OS X's managed preferences.
20 // Takes ownership of |preferences|.
22 MacPreferences* preferences,
31 // In order to access the application preferences API, the names and values of
44 // provided by Mac OS X's managed preferences.
50 // For testing; takes ownership of |preferences|.
53 MacPreferences* preferences);
H A Dconfiguration_policy_provider_mac.cc20 // polls periodically in order to reload managed preferences later even if we
38 MacPreferences* preferences,
42 preferences_(preferences) {
134 MacPreferences* preferences)
136 new MacPreferencesPolicyProviderDelegate(preferences,
37 MacPreferencesPolicyProviderDelegate( MacPreferences* preferences, const ConfigurationPolicyProvider::PolicyDefinitionList* policy_list) argument
132 ConfigurationPolicyProviderMac( const ConfigurationPolicyProvider::PolicyDefinitionList* policy_list, MacPreferences* preferences) argument
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageGroup.cpp94 void WebPageGroup::setPreferences(WebPreferences* preferences) argument
96 if (preferences == m_preferences)
100 m_preferences = preferences;
104 m_preferences = preferences;
111 WebPreferences* WebPageGroup::preferences() const function in class:WebKit::WebPageGroup
H A DWebPageGroup.h57 WebPreferences* preferences() const;
/external/webkit/Tools/WebKitTestRunner/
H A DTestController.cpp356 // Reset preferences
357 WKPreferencesRef preferences = WKPageGroupGetPreferences(m_pageGroup.get()); local
358 WKPreferencesSetOfflineWebApplicationCacheEnabled(preferences, true);
359 WKPreferencesSetFontSmoothingLevel(preferences, kWKFontSmoothingLevelNoSubpixelAntiAliasing);
360 WKPreferencesSetXSSAuditorEnabled(preferences, false);
361 WKPreferencesSetDeveloperExtrasEnabled(preferences, true);
362 WKPreferencesSetJavaScriptCanOpenWindowsAutomatically(preferences, true);
363 WKPreferencesSetJavaScriptCanAccessClipboard(preferences, true);
364 WKPreferencesSetDOMPasteAllowed(preferences, true);
365 WKPreferencesSetUniversalAccessFromFileURLsAllowed(preferences, tru
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp146 COMPtr<IWebPreferences> preferences;
147 if (FAILED(webView->preferences(&preferences)))
150 preferences->setLoadsImagesAutomatically(FALSE);
366 COMPtr<IWebPreferences> preferences;
367 if (FAILED(webView->preferences(&preferences)))
370 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
471 COMPtr<IWebPreferences> preferences;
472 if (FAILED(webView->preferences(
[all...]
H A DDumpRenderTree.cpp816 static void resetDefaultsToConsistentValues(IWebPreferences* preferences) argument
832 preferences->setStandardFontFamily(standardFamily);
833 preferences->setFixedFontFamily(fixedFamily);
834 preferences->setSerifFontFamily(standardFamily);
835 preferences->setSansSerifFontFamily(sansSerifFamily);
836 preferences->setCursiveFontFamily(cursiveFamily);
837 preferences->setFantasyFontFamily(fantasyFamily);
839 preferences->setAutosaves(FALSE);
840 preferences->setDefaultFontSize(16);
841 preferences
903 COMPtr<IWebPreferences> preferences; local
[all...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebInspectorClient.mm222 // Keep preferences separate from the rest of the client, making sure we are using expected preference values.
224 WebPreferences *preferences = [[WebPreferences alloc] init];
225 [preferences setAutosaves:NO];
226 [preferences setLoadsImagesAutomatically:YES];
227 [preferences setAuthorAndUserStylesEnabled:YES];
228 [preferences setJavaScriptEnabled:YES];
229 [preferences setAllowsAnimatedImages:YES];
230 [preferences setPlugInsEnabled:NO];
231 [preferences setJavaEnabled:NO];
232 [preferences setUserStyleSheetEnable
[all...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorClient.cpp112 // Keep preferences separate from the rest of the client, making sure we are using expected preference values.
121 COMPtr<WebPreferences> preferences(Query, iPreferences);
122 if (!preferences)
124 if (FAILED(preferences->setAutosaves(FALSE)))
126 if (FAILED(preferences->setLoadsImagesAutomatically(TRUE)))
128 if (FAILED(preferences->setAuthorAndUserStylesEnabled(TRUE)))
130 if (FAILED(preferences->setAllowsAnimatedImages(TRUE)))
132 if (FAILED(preferences->setLoadsImagesAutomatically(TRUE)))
134 if (FAILED(preferences->setPlugInsEnabled(FALSE)))
136 if (FAILED(preferences
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DDumpRenderTree.mm426 WebPreferences *preferences = [WebPreferences standardPreferences];
428 [preferences setAllowUniversalAccessFromFileURLs:YES];
429 [preferences setAllowFileAccessFromFileURLs:YES];
430 [preferences setStandardFontFamily:@"Times"];
431 [preferences setFixedFontFamily:@"Courier"];
432 [preferences setSerifFontFamily:@"Times"];
433 [preferences setSansSerifFontFamily:@"Helvetica"];
434 [preferences setCursiveFontFamily:@"Apple Chancery"];
435 [preferences setFantasyFontFamily:@"Papyrus"];
436 [preferences setDefaultFontSiz
[all...]
H A DLayoutTestControllerMac.mm384 [[[mainFrame webView] preferences] setAuthorAndUserStylesEnabled:flag];
485 [[[mainFrame webView] preferences] setPrivateBrowsingEnabled:privateBrowsingEnabled];
490 [[[mainFrame webView] preferences] setXSSAuditorEnabled:enabled];
495 [[[mainFrame webView] preferences] setFrameFlatteningEnabled:enabled];
500 [[[mainFrame webView] preferences] setSpatialNavigationEnabled:enabled];
505 [[[mainFrame webView] preferences] setAllowUniversalAccessFromFileURLs:enabled];
510 [[[mainFrame webView] preferences] setAllowFileAccessFromFileURLs:enabled];
515 [[[mainFrame webView] preferences] setJavaScriptCanOpenWindowsAutomatically:!popupBlockingEnabled];
520 [[[mainFrame webView] preferences] setPlugInsEnabled:pluginsEnabled];
525 [[[mainFrame webView] preferences] setJavaScriptCanAccessClipboar
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/
H A Dshell.js386 var preferences = Components.classes['@mozilla.org/preferences;1'];
387 if (!preferences)
392 var prefService = preferences.
443 var preferences = Components.classes['@mozilla.org/preferences;1'];
444 if (!preferences)
449 var prefService = preferences.
/external/chromium/chrome/browser/autofill/
H A Dautofill_download.cc64 PrefService* preferences = profile_->GetPrefs();
66 preferences->GetDouble(prefs::kAutofillPositiveUploadRate);
68 preferences->GetDouble(prefs::kAutofillNegativeUploadRate);
178 PrefService* preferences = profile_->GetPrefs(); local
179 preferences->SetDouble(prefs::kAutofillPositiveUploadRate, rate);
191 PrefService* preferences = profile_->GetPrefs(); local
192 preferences->SetDouble(prefs::kAutofillNegativeUploadRate, rate);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebView.mm685 _private->preferences = [standardPreferences retain];
740 _private->page->settings()->setLocalStorageDatabasePath([[self preferences] _localStorageDatabasePath]);
777 WebPreferences *prefs = [self preferences];
781 [self _preferencesChanged:[self preferences]];
782 [[self preferences] _postPreferencesChangedAPINotification];
1029 if ([[self class] _viewClass:vClass andRepresentationClass:rClass forMIMEType:MIMEType allowingPlugins:[_private->preferences arePlugInsEnabled]])
1208 WebPreferences *preferences = _private->preferences;
1209 _private->preferences = nil;
1210 [preferences didRemoveFromWebVie
[all...]
H A DWebViewData.mm94 ASSERT(applicationIsTerminating || !preferences);
/external/replicaisland/src/com/replica/replicaisland/
H A DSetPreferencesActivity.java36 // Load the preferences from an XML resource
37 addPreferencesFromResource(R.xml.preferences);
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DPDFViewController.mm166 WebPreferences *preferences = _pdfViewController->page()->pageGroup()->preferences();
168 CGFloat scaleFactor = preferences->pdfScaleFactor();
175 [_pdfView setDisplayMode:preferences->pdfDisplayMode()];
185 WebPreferences* preferences = _pdfViewController->page()->pageGroup()->preferences();
188 preferences->setPDFScaleFactor(scaleFactor);
189 preferences->setPDFDisplayMode([_pdfView displayMode]);
/external/chromium/chrome/browser/notifications/
H A Dballoon_host.cc189 RendererPreferences preferences; local
190 renderer_preferences_util::UpdateFromSystemSettings(&preferences, profile);
191 return preferences;
/external/chromium/chrome/browser/tab_contents/
H A Dbackground_contents.cc198 RendererPreferences preferences; local
199 renderer_preferences_util::UpdateFromSystemSettings(&preferences, profile);
200 return preferences;
/external/replicaisland/tools/
H A DExtractPoints.js38 var defaultRulerUnits = app.preferences.rulerUnits;
39 app.preferences.rulerUnits = Units.PIXELS;
289 preferences.rulerUnits = defaultRulerUnits;
/external/webkit/Source/WebKit/win/
H A DWebView.cpp232 COMPtr<IWebPreferences> preferences(Query, unkPrefs);
233 if (!preferences)
237 hr = preferences->cacheModel(&cacheModel);
638 if (FAILED((*it)->preferences(&pref)))
714 if (COMPtr<WebPreferences> preferences = m_preferences) {
716 preferences->identifier(&identifier);
719 preferences->didRemoveFromWebView();
721 preferences = 0;
3171 HRESULT STDMETHODCALLTYPE WebView::preferences(
4030 if (SUCCEEDED(preferences(
[all...]

Completed in 1003 milliseconds

123