HomeSort by relevance Sort by last modified time
    Searched refs:WebPreferences (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/WebKit/win/
WebPreferences.cpp 29 #include "WebPreferences.h"
101 // WebPreferences ----------------------------------------------------------------
105 static HashMap<WebCore::String, COMPtr<WebPreferences> > webPreferencesInstances;
107 WebPreferences* WebPreferences::sharedStandardPreferences()
109 static WebPreferences* standardPreferences;
111 standardPreferences = WebPreferences::createInstance();
119 WebPreferences::WebPreferences()
126 gClassNameCount.add("WebPreferences");
    [all...]
ForEachCoClass.h 54 macro(WebPreferences) \
WebPreferences.h 34 class WebPreferences : public IWebPreferences, public IWebPreferencesPrivate {
36 static WebPreferences* createInstance();
38 WebPreferences();
39 ~WebPreferences();
399 // WebPreferences
408 static void setInstance(WebPreferences* instance, BSTR identifier);
410 static WebPreferences* sharedStandardPreferences();
436 static WebPreferences* getInstanceForIdentifier(BSTR identifier);
WebHistory.h 44 class WebPreferences;
164 COMPtr<WebPreferences> m_preferences;
WebIconDatabase.cpp 32 #include "WebPreferences.h"
68 WebPreferences* standardPrefs = WebPreferences::sharedStandardPreferences();
83 WebPreferences* standardPrefs = WebPreferences::sharedStandardPreferences();
WebDropSource.cpp 120 if (FAILED(WebPreferences::sharedStandardPreferences()->customDragCursorsEnabled(&showCustomCursors)))
WebKitGraphics.cpp 32 #include "WebPreferences.h"
70 if (SUCCEEDED(WebPreferences::sharedStandardPreferences()->fontSmoothing(&smoothingType)))
WebView.cpp 59 #include "WebPreferences.h"
233 if (wcscmp(name, WebPreferences::webPreferencesChangedNotification()) == 0)
236 if (wcscmp(name, WebPreferences::webPreferencesRemovedNotification()) == 0)
251 hr = WebPreferences::sharedStandardPreferences()->cacheModel(&sharedPreferencesCacheModel);
266 hr = WebPreferences::sharedStandardPreferences()->cacheModel(&sharedPreferencesCacheModel);
352 WebPreferences* sharedPreferences = WebPreferences::sharedStandardPreferences();
396 notifyCenter->addObserver(PreferencesChangedOrRemovedObserver::sharedInstance(), WebPreferences::webPreferencesChangedNotification(), 0);
397 notifyCenter->addObserver(PreferencesChangedOrRemovedObserver::sharedInstance(), WebPreferences::webPreferencesRemovedNotification(), 0);
688 notifyCenter->removeObserver(this, WebPreferences::webPreferencesChangedNotification(), static_cast<IWebPreferences*>(m_preferences.get()))
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebPreferencesPrivate.h 29 #import <WebKit/WebPreferences.h>
49 @interface WebPreferences (WebPrivate)
169 + (WebPreferences *)_getInstanceForIdentifier:(NSString *)identifier;
170 + (void)_setInstance:(WebPreferences *)instance forIdentifier:(NSString *)identifier;
WebPreferences.h 78 @class WebPreferences
80 @interface WebPreferences: NSObject <NSCoding>
89 + (WebPreferences *)standardPreferences;
93 @param anIdentifier A string used to identify the WebPreferences.
94 @discussion WebViews can share instances of WebPreferences by using an instance of WebPreferences with
97 for the WebPreferences.
98 @result Returns a new instance of WebPreferences or a previously allocated instance with the same identifier.
104 @result Returns the identifier for this WebPreferences.
333 WebPreferences will be stored in the user defaults database
    [all...]
WebViewData.h 43 @class WebPreferences;
84 WebPreferences *preferences;
WebPreferences.mm 48 static WebPreferences *_standardPreferences;
159 @interface WebPreferences (WebInternal)
164 @interface WebPreferences (WebForwardDeclarations)
177 @implementation WebPreferences
186 fakeIdentifier = [NSString stringWithFormat:@"WebPreferences%d", instanceCount++];
188 fakeIdentifier = [NSString stringWithFormat:@"WebPreferences%d", instanceCount++];
201 _private->IBCreatorID = [[WebPreferences _IBCreatorID] retain];
203 WebPreferences *instance = [[self class] _getInstanceForIdentifier:anIdentifier];
227 _private->IBCreatorID = [[WebPreferences _IBCreatorID] retain];
258 WebPreferences *instance = [[self class] _getInstanceForIdentifier:_private->identifier]
    [all...]
WebView.h 49 @class WebPreferences;
458 - (void)setPreferences: (WebPreferences *)prefs;
463 @discussion This method will return [WebPreferences standardPreferences] if no
464 other instance of WebPreferences has been set.
466 - (WebPreferences *)preferences;
472 @discussion If the WebPreferences for this WebView are stored in the user defaults database, the
479 @result Returns the WebPreferences key prefix.
WebView.mm 594 WebPreferences *standardPreferences = [WebPreferences standardPreferences];
664 WebPreferences *prefs = [self preferences];
    [all...]
WebPDFView.mm     [all...]
WebViewPrivate.h 48 @class WebPreferences;
  /external/webkit/WebKit/mac/Misc/
WebKit.h 47 #import <WebKit/WebPreferences.h>
WebIconDatabase.mm 38 #import "WebPreferences.h"
296 iconDatabase()->setPrivateBrowsingEnabled([[WebPreferences standardPreferences] privateBrowsingEnabled]);
359 BOOL privateBrowsingEnabledNow = [[WebPreferences standardPreferences] privateBrowsingEnabled];
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 58 #import <WebKit/WebPreferences.h>
359 [[WebPreferences standardPreferences] setUserStyleSheetEnabled:flag];
366 [[WebPreferences standardPreferences] setUserStyleSheetLocation:url];
371 [[WebPreferences standardPreferences] setLoadsImagesAutomatically:NO];
387 [[WebPreferences standardPreferences] _setPreferenceForTestWithValue:valueNS forKey:keyNS];
470 [[WebPreferences standardPreferences] setCacheModel:cacheModel];
DumpRenderTree.mm 72 #import <WebKit/WebPreferences.h>
396 WebPreferences *preferences = [WebPreferences standardPreferences];
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 133 // a private WebPreferences object, even within WebKit. We should make this
136 COMPtr<WebPreferences> tempPreferences(AdoptCOM, WebPreferences::createInstance());
140 COMPtr<WebPreferences> preferences(Query, iPreferences);
  /external/webkit/WebKit/win/Interfaces/
WebKit.idl 208 coclass WebPreferences {
  /external/webkit/WebKit/mac/WebCoreSupport/
WebInspectorClient.mm 176 WebPreferences *preferences = [[WebPreferences alloc] init];
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginHostManager.mm 220 WebPreferences *preferences = [[pluginView webView] preferences];
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 701 WebPreferences *preferences = [[self webView] preferences];

Completed in 127 milliseconds

1 2