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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:20:36 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit b95d3204d9a4c63e923999a33b42d955589eea2c
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jun 19 18:51:04 2002 +0000

    WebKit:
    
            Call setWindow in layout so that plug-in content is drawn without
            needing to resize.
    
            * Plugins.subproj/IFPluginView.mm:
            (-[IFPluginView layout]):
            (-[IFPluginView viewHasMoved:]):
    
    WebBrowser:
    
            Fix for 2956361 - use redirected name for downloaded files
            Simplified mime parsing in Defaults.plist
    
            * Defaults.plist:
            * DownloadProgressEntry.m:
            (-[DownloadProgressEntry _initWithResource:progress:error:dataSource:]):
            * LocationChangeHandler.m:
            (-[LocationChangeHandler requestContentPolicyForMIMEType:dataSource:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1402 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 9e64dd7..38e6f43 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-06-19  Chris Blumenberg  <cblu at apple.com>
+
+	Call setWindow in layout so that plug-in content is drawn without 
+	needing to resize.
+
+	* Plugins.subproj/IFPluginView.mm:
+	(-[IFPluginView layout]):
+	(-[IFPluginView viewHasMoved:]):
+
 2002-06-19  Kenneth Kocienda  <kocienda at apple.com>
 
         I just played alchemical voodoo games with the linker to
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 9e64dd7..38e6f43 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-06-19  Chris Blumenberg  <cblu at apple.com>
+
+	Call setWindow in layout so that plug-in content is drawn without 
+	needing to resize.
+
+	* Plugins.subproj/IFPluginView.mm:
+	(-[IFPluginView layout]):
+	(-[IFPluginView viewHasMoved:]):
+
 2002-06-19  Kenneth Kocienda  <kocienda at apple.com>
 
         I just played alchemical voodoo games with the linker to
diff --git a/WebKit/Plugins.subproj/IFPluginView.mm b/WebKit/Plugins.subproj/IFPluginView.mm
index 3276813..40efb5d 100644
--- a/WebKit/Plugins.subproj/IFPluginView.mm
+++ b/WebKit/Plugins.subproj/IFPluginView.mm
@@ -548,6 +548,7 @@ static char *newCString(NSString *string)
     
     [self setFrame:NSMakeRect(0, 0, superFrame.size.width, superFrame.size.height)];
     [self setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
+    [self setWindow];
 }
 
 
@@ -577,9 +578,9 @@ static char *newCString(NSString *string)
 
 -(void) viewHasMoved:(NSNotification *)notification
 {
-    [self sendUpdateEvent];
+    [self sendUpdateEvent]; 
     [self setWindow];
-    
+
     // reset the tracking rect
     [self removeTrackingRect:trackingTag];
     trackingTag = [self addTrackingRect:[self bounds] owner:self userData:nil assumeInside:NO];
diff --git a/WebKit/Plugins.subproj/WebPluginView.m b/WebKit/Plugins.subproj/WebPluginView.m
index 3276813..40efb5d 100644
--- a/WebKit/Plugins.subproj/WebPluginView.m
+++ b/WebKit/Plugins.subproj/WebPluginView.m
@@ -548,6 +548,7 @@ static char *newCString(NSString *string)
     
     [self setFrame:NSMakeRect(0, 0, superFrame.size.width, superFrame.size.height)];
     [self setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
+    [self setWindow];
 }
 
 
@@ -577,9 +578,9 @@ static char *newCString(NSString *string)
 
 -(void) viewHasMoved:(NSNotification *)notification
 {
-    [self sendUpdateEvent];
+    [self sendUpdateEvent]; 
     [self setWindow];
-    
+
     // reset the tracking rect
     [self removeTrackingRect:trackingTag];
     trackingTag = [self addTrackingRect:[self bounds] owner:self userData:nil assumeInside:NO];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list