summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/mac/WebView/WebPreferencesPrivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/mac/WebView/WebPreferencesPrivate.h')
-rw-r--r--Source/WebKit/mac/WebView/WebPreferencesPrivate.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/WebKit/mac/WebView/WebPreferencesPrivate.h b/Source/WebKit/mac/WebView/WebPreferencesPrivate.h
index 7e1f6a2..e66604a 100644
--- a/Source/WebKit/mac/WebView/WebPreferencesPrivate.h
+++ b/Source/WebKit/mac/WebView/WebPreferencesPrivate.h
@@ -51,6 +51,7 @@ typedef enum {
extern NSString *WebPreferencesChangedNotification;
extern NSString *WebPreferencesRemovedNotification;
+extern NSString *WebPreferencesChangedInternalNotification;
@interface WebPreferences (WebPrivate)
@@ -210,7 +211,8 @@ extern NSString *WebPreferencesRemovedNotification;
- (void)setHyperlinkAuditingEnabled:(BOOL)enabled;
// Other private methods
-- (void)_postPreferencesChangesNotification;
+- (void)_postPreferencesChangedNotification;
+- (void)_postPreferencesChangedAPINotification;
+ (WebPreferences *)_getInstanceForIdentifier:(NSString *)identifier;
+ (void)_setInstance:(WebPreferences *)instance forIdentifier:(NSString *)identifier;
+ (void)_removeReferenceForIdentifier:(NSString *)identifier;
@@ -238,4 +240,7 @@ extern NSString *WebPreferencesRemovedNotification;
- (BOOL)useQuickLookResourceCachingQuirks;
+- (void)setLoadsSiteIconsIgnoringImageLoadingPreference: (BOOL)flag;
+- (BOOL)loadsSiteIconsIgnoringImageLoadingPreference;
+
@end