Changeset 70403 in webkit


Ignore:
Timestamp:
Oct 23, 2010 4:21:19 PM (13 years ago)
Author:
ddkilzer@apple.com
Message:

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header

Reviewed by Sam Weinig.

The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.

  • WebKit.xcodeproj/project.pbxproj: Removed references to WebHTMLRepresentationInternal.h.

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header

Reviewed by Sam Weinig.

The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.

  • WebView/WebHTMLRepresentationInternal.h: Removed.

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header

Reviewed by Sam Weinig.

The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.

  • DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h: Removed.
  • DumpRenderTree/mac/WebArchiveDumpSupport.mm: Switched to use WebHTMLRepresentation.h.
Location:
trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r70239 r70403  
     12010-10-23  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header
     4
     5        Reviewed by Sam Weinig.
     6
     7        The only method defined in WebHTMLRepresentationInternal.h is
     8        also defined in WebHTMLRepresentation.h, so use that instead.
     9
     10        * WebKit.xcodeproj/project.pbxproj: Removed references to
     11        WebHTMLRepresentationInternal.h.
     12
    1132010-10-21  David Kilzer  <ddkilzer@apple.com>
    214
  • trunk/WebKit/WebKit.xcodeproj/project.pbxproj

    r70239 r70403  
    8888                41F4484F10338E8C0030E55E /* WebWorkersPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F4484D10338E8C0030E55E /* WebWorkersPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
    8989                41F4485010338E8C0030E55E /* WebWorkersPrivate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41F4484E10338E8C0030E55E /* WebWorkersPrivate.mm */; };
    90                 441793A60E34EE150055E1AE /* WebHTMLRepresentationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 441793A50E34EE150055E1AE /* WebHTMLRepresentationInternal.h */; };
    9190                44BB8B141241A022001E3A22 /* WebArchiveInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BB8B131241A022001E3A22 /* WebArchiveInternal.h */; };
    9291                4BF99F900AE050BC00815C2B /* WebEditorClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF99F8E0AE050BC00815C2B /* WebEditorClient.h */; settings = {ATTRIBUTES = (); }; };
     
    486485                41F4484D10338E8C0030E55E /* WebWorkersPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebWorkersPrivate.h; path = mac/Workers/WebWorkersPrivate.h; sourceTree = "<group>"; };
    487486                41F4484E10338E8C0030E55E /* WebWorkersPrivate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WebWorkersPrivate.mm; path = mac/Workers/WebWorkersPrivate.mm; sourceTree = "<group>"; };
    488                 441793A50E34EE150055E1AE /* WebHTMLRepresentationInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WebHTMLRepresentationInternal.h; sourceTree = "<group>"; };
    489487                449098B90F8F82DF0076A327 /* FeatureDefines.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = FeatureDefines.xcconfig; sourceTree = "<group>"; };
    490488                44BB8B131241A022001E3A22 /* WebArchiveInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebArchiveInternal.h; sourceTree = "<group>"; };
     
    12541252                                35081D9202B6D4D80ACA2ACA /* WebHTMLRepresentation.h */,
    12551253                                35081D9302B6D4D80ACA2ACA /* WebHTMLRepresentation.mm */,
    1256                                 441793A50E34EE150055E1AE /* WebHTMLRepresentationInternal.h */,
    12571254                                F5A55DC702BAA2E8018635CC /* WebHTMLRepresentationPrivate.h */,
    12581255                                35081D9402B6D4D80ACA2ACA /* WebHTMLView.h */,
     
    14961493                                1AAF5FBF0EDE3A92008D883D /* WebHostedNetscapePluginView.h in Headers */,
    14971494                                939810550824BF01008DF038 /* WebHTMLRepresentation.h in Headers */,
    1498                                 441793A60E34EE150055E1AE /* WebHTMLRepresentationInternal.h in Headers */,
    14991495                                939810560824BF01008DF038 /* WebHTMLRepresentationPrivate.h in Headers */,
    15001496                                939810570824BF01008DF038 /* WebHTMLView.h in Headers */,
  • trunk/WebKit/mac/ChangeLog

    r70400 r70403  
     12010-10-23  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header
     4
     5        Reviewed by Sam Weinig.
     6
     7        The only method defined in WebHTMLRepresentationInternal.h is
     8        also defined in WebHTMLRepresentation.h, so use that instead.
     9
     10        * WebView/WebHTMLRepresentationInternal.h: Removed.
     11
    1122010-10-23  Alexey Proskuryakov  <ap@apple.com>
    213
  • trunk/WebKitTools/ChangeLog

    r70385 r70403  
     12010-10-23  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header
     4
     5        Reviewed by Sam Weinig.
     6
     7        The only method defined in WebHTMLRepresentationInternal.h is
     8        also defined in WebHTMLRepresentation.h, so use that instead.
     9
     10        * DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h: Removed.
     11        * DumpRenderTree/mac/WebArchiveDumpSupport.mm: Switched to use
     12        WebHTMLRepresentation.h.
     13
    1142010-10-23  Sheriff Bot  <webkit.review.bot@gmail.com>
    215
  • trunk/WebKitTools/DumpRenderTree/mac/WebArchiveDumpSupport.mm

    r69199 r70403  
    2828#import <Foundation/Foundation.h>
    2929#import <WebKit/WebArchive.h>
    30 #import <WebKit/WebHTMLRepresentationInternal.h>
     30#import <WebKit/WebHTMLRepresentation.h>
    3131
    3232static void convertMIMEType(NSMutableString *mimeType)
Note: See TracChangeset for help on using the changeset viewer.