Title: [134353] trunk/Source
Revision
134353
Author
[email protected]
Date
2012-11-12 20:55:49 -0800 (Mon, 12 Nov 2012)

Log Message

Build fix after r134346 and 134347.

Use frameView.isFlipped, not frameView.flipped in the assertion.

Source/WebKit/mac:

* WebCoreSupport/WebInspectorClient.mm:
(-[WebInspectorWindowController window]):

Source/WebKit2:

* UIProcess/mac/WebInspectorProxyMac.mm:
(WebKit::WebInspectorProxy::createInspectorWindow):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (134352 => 134353)


--- trunk/Source/WebKit/mac/ChangeLog	2012-11-13 04:51:53 UTC (rev 134352)
+++ trunk/Source/WebKit/mac/ChangeLog	2012-11-13 04:55:49 UTC (rev 134353)
@@ -1,3 +1,12 @@
+2012-11-12  Simon Fraser  <[email protected]>
+
+        Build fix after r134346 and 134347.
+        
+        Use frameView.isFlipped, not frameView.flipped in the assertion.
+
+        * WebCoreSupport/WebInspectorClient.mm:
+        (-[WebInspectorWindowController window]):
+
 2012-11-12  Timothy Hatcher  <[email protected]>
 
         Add a dock button to the top right corner of the Web Inspector window (similar to the full screen button).

Modified: trunk/Source/WebKit/mac/WebCoreSupport/WebInspectorClient.mm (134352 => 134353)


--- trunk/Source/WebKit/mac/WebCoreSupport/WebInspectorClient.mm	2012-11-13 04:51:53 UTC (rev 134352)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebInspectorClient.mm	2012-11-13 04:55:49 UTC (rev 134353)
@@ -401,7 +401,7 @@
     NSRect frameViewBounds = frameView.bounds;
     NSSize dockButtonSize = _dockButton.get().frame.size;
 
-    ASSERT(!frameView.flipped);
+    ASSERT(!frameView.isFlipped);
 
     // Position the dock button in the corner to match where the full screen button is normally.
     NSPoint dockButtonOrigin;

Modified: trunk/Source/WebKit2/ChangeLog (134352 => 134353)


--- trunk/Source/WebKit2/ChangeLog	2012-11-13 04:51:53 UTC (rev 134352)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-13 04:55:49 UTC (rev 134353)
@@ -1,3 +1,12 @@
+2012-11-12  Simon Fraser  <[email protected]>
+
+        Build fix after r134346 and 134347.
+        
+        Use frameView.isFlipped, not frameView.flipped in the assertion.
+
+        * UIProcess/mac/WebInspectorProxyMac.mm:
+        (WebKit::WebInspectorProxy::createInspectorWindow):
+
 2012-11-12  Timothy Hatcher  <[email protected]>
 
         Add a dock button to the top right corner of the Web Inspector window (similar to the full screen button).

Modified: trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm (134352 => 134353)


--- trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm	2012-11-13 04:51:53 UTC (rev 134352)
+++ trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm	2012-11-13 04:55:49 UTC (rev 134353)
@@ -203,7 +203,7 @@
     NSRect frameViewBounds = frameView.bounds;
     NSSize dockButtonSize = m_dockButton.get().frame.size;
 
-    ASSERT(!frameView.flipped);
+    ASSERT(!frameView.isFlipped);
 
     // Position the dock button in the corner to match where the full screen button is normally.
     NSPoint dockButtonOrigin;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to