[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:13:36 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 82134c6ca1b20be5ed0cf592fdd9b244ff9809ae
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat May 18 00:59:25 2002 +0000

    Replacing IFPluginStream.m with IFPluginStream.mm.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1172 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/Plugins.subproj/IFPluginStream.m b/WebKit/Plugins.subproj/IFPluginStream.m
deleted file mode 100644
index d530933..0000000
--- a/WebKit/Plugins.subproj/IFPluginStream.m
+++ /dev/null
@@ -1,95 +0,0 @@
-/*	
-    IFPluginStream.m
-	Copyright 2002, Apple, Inc. All rights reserved.
-*/
-
-#import "IFPluginStream.h"
-
-
- at implementation IFPluginStream
-
-- initWithURL:(NSURL *)streamURL mimeType:(NSString *)mime notifyData:(void *)notifyData
-{
-    char * cURL;
-    NSString *streamURLString;
-    
-    mimeType = [mime retain];
-    
-    streamURLString = [streamURL absoluteString];
-    cURL   = malloc([streamURLString length]+1);
-    [streamURLString getCString:cURL];
-    
-    npStream = malloc(sizeof(NPStream));
-    npStream->url = cURL;
-    npStream->end = 0;
-    npStream->lastmodified = 0;
-    npStream->notifyData = notifyData;
-    offset = 0;
-    
-    data = [[NSMutableData dataWithCapacity:0] retain];
-    
-    return self;
-}
-
-
-- (uint16) transferMode
-{
-    return transferMode;
-}
-
-
-- (int32) offset
-{
-    return offset;
-}
-
-
-- (NPStream *) npStream
-{
-    return npStream;
-}
-
-
-- (NSString *) filename
-{
-    return filename;
-}
-
-
-- (NSString *) mimeType
-{
-    return mimeType;
-}
-
-
-- (NSMutableData *) data
-{
-    return data;
-}
-
-
-- (void) setFilename:(NSString *)file
-{
-    filename = [file retain];
-}
-
-- (void) setTransferMode:(uint16)tMode
-{
-    transferMode = tMode;
-}
-
-- (void) incrementOffset:(int32)addition
-{
-    offset += addition;
-}
-
-- (void) dealloc
-{
-    free(npStream);
-    [mimeType release];
-    [data release];
-    if(filename)
-        [filename release];
-}
-
- at end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list