[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:41:05 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit b9eba999ddc96b5b56bcfb449066af0216f0ddd3
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu May 8 21:03:20 2003 +0000

    	Closed up all gaps in WebKit between "ASSERT" and "(" to
    	make Darin's day a little brighter.
    
            Reviewed by Darin
    
            * WebCoreSupport.subproj/WebBridge.m:
            (-[WebBridge pluginViewWithPackage:attributes:baseURL:]):
            (-[WebBridge handleMouseDragged:]):
            (-[WebBridge mayStartDragWithMouseDragged:]):
            * WebCoreSupport.subproj/WebImageRenderer.m:
            (-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
            * WebView.subproj/WebBaseResourceHandleDelegate.m:
            (-[WebBaseResourceHandleDelegate _releaseResources]):
            (-[WebBaseResourceHandleDelegate dealloc]):
            * WebView.subproj/WebFramePrivate.m:
            (-[WebFrame _transitionToCommitted:]):
            * WebView.subproj/WebViewPrivate.m:
            (-[WebView _preferencesChangedNotification:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4314 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 63928cb..678c39a 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,26 @@
 2003-05-08  John Sullivan  <sullivan at apple.com>
 
+	Closed up all gaps in WebKit between "ASSERT" and "(" to
+	make Darin's day a little brighter.
+
+        Reviewed by Darin
+
+        * WebCoreSupport.subproj/WebBridge.m:
+        (-[WebBridge pluginViewWithPackage:attributes:baseURL:]):
+        (-[WebBridge handleMouseDragged:]):
+        (-[WebBridge mayStartDragWithMouseDragged:]):
+        * WebCoreSupport.subproj/WebImageRenderer.m:
+        (-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
+        * WebView.subproj/WebBaseResourceHandleDelegate.m:
+        (-[WebBaseResourceHandleDelegate _releaseResources]):
+        (-[WebBaseResourceHandleDelegate dealloc]):
+        * WebView.subproj/WebFramePrivate.m:
+        (-[WebFrame _transitionToCommitted:]):
+        * WebView.subproj/WebViewPrivate.m:
+        (-[WebView _preferencesChangedNotification:]):
+
+2003-05-08  John Sullivan  <sullivan at apple.com>
+
 	- fixed 3252632 -- Registering a WebDocumentView too 
 	early breaks built-in image viewing
 
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index e4a7721..94930f2 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -579,7 +579,7 @@
 {
     WebHTMLView *docView = (WebHTMLView *)[[_frame frameView] documentView];
 
-    ASSERT ([docView isKindOfClass:[WebHTMLView class]]);
+    ASSERT([docView isKindOfClass:[WebHTMLView class]]);
     
     WebPluginController *pluginController = [docView _pluginController];
     
@@ -810,7 +810,7 @@ static BOOL loggedObjectCacheSize = NO;
 {
     WebHTMLView *docView = (WebHTMLView *)[[_frame frameView] documentView];
 
-    ASSERT ([docView isKindOfClass:[WebHTMLView class]]);
+    ASSERT([docView isKindOfClass:[WebHTMLView class]]);
 
     [docView _handleMouseDragged:event];
 }
@@ -819,7 +819,7 @@ static BOOL loggedObjectCacheSize = NO;
 {
     WebHTMLView *docView = (WebHTMLView *)[[_frame frameView] documentView];
 
-    ASSERT ([docView isKindOfClass:[WebHTMLView class]]);
+    ASSERT([docView isKindOfClass:[WebHTMLView class]]);
 
     [docView _handleAutoscrollForMouseDragged:event];
 }
@@ -828,7 +828,7 @@ static BOOL loggedObjectCacheSize = NO;
 {
     WebHTMLView *docView = (WebHTMLView *)[[_frame frameView] documentView];
 
-    ASSERT ([docView isKindOfClass:[WebHTMLView class]]);
+    ASSERT([docView isKindOfClass:[WebHTMLView class]]);
 
     return [docView _mayStartDragWithMouseDragged:event];
 }
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index d67a8bb..91e98be 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -258,8 +258,8 @@ static NSMutableArray *activeImageRenderers;
             // Reduce heights of both rectangles without changing their positions.
             // In the non-flipped case, this means moving the origins up from the bottom left.
             // In the flipped case, just adjusting the height is sufficient.
-            ASSERT ([self isFlipped]);
-            ASSERT ([[NSView focusView] isFlipped]);
+            ASSERT([self isFlipped]);
+            ASSERT([[NSView focusView] isFlipped]);
             ir.size.height = clippedDestinationHeight;
             fr.origin.y += fr.size.height - clippedSourceHeight;
             fr.size.height = clippedSourceHeight;
diff --git a/WebKit/WebView.subproj/WebBaseResourceHandleDelegate.m b/WebKit/WebView.subproj/WebBaseResourceHandleDelegate.m
index 8691dbc..dbdc917 100644
--- a/WebKit/WebView.subproj/WebBaseResourceHandleDelegate.m
+++ b/WebKit/WebView.subproj/WebBaseResourceHandleDelegate.m
@@ -28,7 +28,7 @@
 
 - (void)_releaseResources
 {
-    ASSERT (!reachedTerminalState);
+    ASSERT(!reachedTerminalState);
     
     // It's possible that when we release the handle, it will be
     // deallocated and release the last reference to this object.
@@ -62,7 +62,7 @@
 
 - (void)dealloc
 {
-    ASSERT (reachedTerminalState);
+    ASSERT(reachedTerminalState);
     [request release];
     [response release];
     [super dealloc];
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index fe6489f..741edb8 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -622,7 +622,7 @@ Repeat load of the same URL (by any other means of navigation other than the rel
                     // Create a document view for this document, or used the cached view.
                     if (pageCache){
                         NSView <WebDocumentView> *cachedView = [pageCache objectForKey: @"WebKitDocumentView"];
-                        ASSERT (cachedView != nil);
+                        ASSERT(cachedView != nil);
                         [[self frameView] _setDocumentView: cachedView];
                     }
                     else
diff --git a/WebKit/WebView.subproj/WebLoader.m b/WebKit/WebView.subproj/WebLoader.m
index 8691dbc..dbdc917 100644
--- a/WebKit/WebView.subproj/WebLoader.m
+++ b/WebKit/WebView.subproj/WebLoader.m
@@ -28,7 +28,7 @@
 
 - (void)_releaseResources
 {
-    ASSERT (!reachedTerminalState);
+    ASSERT(!reachedTerminalState);
     
     // It's possible that when we release the handle, it will be
     // deallocated and release the last reference to this object.
@@ -62,7 +62,7 @@
 
 - (void)dealloc
 {
-    ASSERT (reachedTerminalState);
+    ASSERT(reachedTerminalState);
     [request release];
     [response release];
     [super dealloc];
diff --git a/WebKit/WebView.subproj/WebViewPrivate.m b/WebKit/WebView.subproj/WebViewPrivate.m
index 7185a41..b528afa 100644
--- a/WebKit/WebView.subproj/WebViewPrivate.m
+++ b/WebKit/WebView.subproj/WebViewPrivate.m
@@ -433,7 +433,7 @@
 {
     WebPreferences *preferences = (WebPreferences *)[notification object];
     
-    ASSERT (preferences == [self preferences]);
+    ASSERT(preferences == [self preferences]);
     [self _releaseUserAgentStrings];
     [self _updateWebCoreSettingsFromPreferences: preferences];
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list