From c5852a729bf59441acd1407f3df21b9817876b43 Mon Sep 17 00:00:00 2001 From: "weinig@apple.com" Date: Sun, 25 May 2014 19:34:40 +0000 Subject: [PATCH] Fix build. * UIProcess/API/Cocoa/WKPreferences.h: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@169322 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebKit2/ChangeLog | 6 ++++++ Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h | 9 ++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog index 60007bb..ee09995 100644 --- a/Source/WebKit2/ChangeLog +++ b/Source/WebKit2/ChangeLog @@ -1,3 +1,9 @@ +2014-05-25 Sam Weinig + + Fix build. + + * UIProcess/API/Cocoa/WKPreferences.h: + 2014-05-24 Sam Weinig [WebKit2] Rework WebPreferencesStore to allow easier overriding of defaults diff --git a/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h b/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h index 5a2942c..75cf6f1 100644 --- a/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h +++ b/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h @@ -34,7 +34,7 @@ A @link WKWebView @/link can specify which WKPreferences object it uses through its @link WKWebViewConfiguration @/link. */ WK_CLASS_AVAILABLE(10_10, 8_0) -@interface : NSObject +@interface WKPreferences : NSObject /*! @abstract Returns an initialized WKPreferences object. @param userDefaultsKeyPrefix The user defaults key prefix. @@ -45,8 +45,7 @@ WK_CLASS_AVAILABLE(10_10, 8_0) /*! @abstract The user defaults key prefix. */ -@property (nonatomic, readonly) NSString *userDefaultsKeyPrefix; - + /*! @abstract The minimum font size in points. Defaults to 0. */ @property (nonatomic) CGFloat minimumFontSize; @@ -79,11 +78,11 @@ WK_CLASS_AVAILABLE(10_10, 8_0) #endif #if !TARGET_OS_IPHONE -/*! @abstract Whether Java is enabled. Defaults to YES. +/*! @abstract Whether Java is enabled. Defaults to NO. */ @property (nonatomic, getter=isJavaEnabled) BOOL javaEnabled; -/*! abstract Whether plug-ins are enabled. Defaults to YES. +/*! abstract Whether plug-ins are enabled. Defaults to NO. */ @property (nonatomic, getter=arePlugInsEnabled) BOOL plugInsEnabled; #endif -- 1.8.3.1