Title: [169322] trunk/Source/WebKit2
Revision
169322
Author
[email protected]
Date
2014-05-25 12:34:40 -0700 (Sun, 25 May 2014)

Log Message

Fix build.

* UIProcess/API/Cocoa/WKPreferences.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169321 => 169322)


--- trunk/Source/WebKit2/ChangeLog	2014-05-25 18:59:41 UTC (rev 169321)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-25 19:34:40 UTC (rev 169322)
@@ -1,3 +1,9 @@
+2014-05-25  Sam Weinig  <[email protected]>
+
+        Fix build.
+
+        * UIProcess/API/Cocoa/WKPreferences.h:
+
 2014-05-24  Sam Weinig  <[email protected]>
 
         [WebKit2] Rework WebPreferencesStore to allow easier overriding of defaults

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h (169321 => 169322)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h	2014-05-25 18:59:41 UTC (rev 169321)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreferences.h	2014-05-25 19:34:40 UTC (rev 169322)
@@ -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 @@
 
 /*! @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 @@
 #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
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to