summaryrefslogtreecommitdiff
path: root/Source/WebKit/mac/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/mac/ChangeLog')
-rw-r--r--Source/WebKit/mac/ChangeLog72
1 files changed, 72 insertions, 0 deletions
diff --git a/Source/WebKit/mac/ChangeLog b/Source/WebKit/mac/ChangeLog
index 25de1125e..b994b7000 100644
--- a/Source/WebKit/mac/ChangeLog
+++ b/Source/WebKit/mac/ChangeLog
@@ -1,3 +1,75 @@
+2012-07-17 Vivek Galatage <vivekgalatage@gmail.com>
+
+ Web Inspector: refactor InspectorController::connectFrontend() to accept InspectorFrontendChannel.
+ https://bugs.webkit.org/show_bug.cgi?id=91196
+
+ Reviewed by Pavel Feldman.
+
+ Refactoring InspectorClients. InspectorClient::openInspectorFrontend
+ now returning the InspectorFrontendChannel.
+
+ * WebCoreSupport/WebInspectorClient.h:
+ (WebInspectorClient):
+ * WebCoreSupport/WebInspectorClient.mm:
+ (WebInspectorClient::openInspectorFrontend):
+
+2012-07-17 David Barr <davidbarr@chromium.org>
+
+ Introduce ENABLE_CSS_IMAGE_ORIENTATION compile flag
+ https://bugs.webkit.org/show_bug.cgi?id=89055
+
+ Reviewed by Kent Tamura.
+
+ The css3-images module is at candidate recommendation.
+ http://www.w3.org/TR/2012/CR-css3-images-20120417/#the-image-orientation
+
+ Add a configuration option for CSS image-orientation support, disabling it by default.
+
+ * Configurations/FeatureDefines.xcconfig:
+
+2012-07-15 Joseph Pecoraro <pecoraro@apple.com>
+
+ Fix case sensitive build issue.
+
+ Unreviewed build fix.
+
+ * WebView/WebPreferences.mm:
+
+2012-07-15 Benjamin Poulain <benjamin@webkit.org>
+
+ Make WebPreferencesPrivate a simple struct
+ https://bugs.webkit.org/show_bug.cgi?id=91330
+
+ Reviewed by Filip Pizlo.
+
+ To avoid taking time creating a new Objective-C object for WebPreferencesPrivate, we can just make
+ it a simple struct.
+
+ * WebView/WebPreferences.h:
+ * WebView/WebPreferences.mm:
+ (WebPreferencesPrivate):
+ (WebPreferencesPrivate::WebPreferencesPrivate):
+ Replace the Objective-C WebPreferencesPrivate by a struct.
+ Remove IBCreatorID from the object as it is unused.
+ Use RetainPtr for the Objective-C attribute to avoid tracking their memory manually.
+
+ (-[WebPreferences initWithIdentifier:]):
+ Change the order of the initialization to avoid allocating anyting if a WebPreferences exists
+ for the identifier.
+ Both [NSObject init] and WebPreferencesPrivate allocation are moved after the fast path.
+
+ (-[WebPreferences initWithCoder:]):
+ (-[WebPreferences encodeWithCoder:]):
+ (-[WebPreferences dealloc]):
+ (-[WebPreferences identifier]):
+ (-[WebPreferences _valueForKey:]):
+ (-[WebPreferences _setStringValue:forKey:]):
+ (-[WebPreferences _setIntegerValue:forKey:]):
+ (-[WebPreferences _setFloatValue:forKey:]):
+ (-[WebPreferences _setBoolValue:forKey:]):
+ (-[WebPreferences _setLongLongValue:forKey:]):
+ (-[WebPreferences _setUnsignedLongLongValue:forKey:]):
+
2012-07-14 Benjamin Poulain <bpoulain@apple.com>
[Mac] Do not try to update the cache model for every WebPreferences change