Changeset 46565 in webkit


Ignore:
Timestamp:
Jul 29, 2009 5:08:20 PM (15 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/27788> Don't export WebPluginController.h as a private header

Reviewed by Mark Rowe.

WebKit:

WebPluginController.h includes WebPluginContainerCheck.h, which
is not a private header. Since WebPluginController.h doesn't
appear to be used anywhere, remove its private header status.

  • WebKit.xcodeproj/project.pbxproj: Remove private header attribute from WebPluginController.h.

WebKit/mac:

  • Plugins/WebPluginController.h: Changed #import of WebPluginContainerCheck.h to use a framework-style include in case other platforms wish to export WebPluginController.h as a private header.
Location:
trunk/WebKit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r46494 r46565  
     12009-07-29  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/27788> Don't export WebPluginController.h as a private header
     4
     5        Reviewed by Mark Rowe.
     6
     7        WebPluginController.h includes WebPluginContainerCheck.h, which
     8        is not a private header.  Since WebPluginController.h doesn't
     9        appear to be used anywhere, remove its private header status.
     10
     11        * WebKit.xcodeproj/project.pbxproj: Remove private header
     12        attribute from WebPluginController.h.
     13
    1142009-07-28  Maxime Simon  <simon.maxime@gmail.com>
    215
  • trunk/WebKit/WebKit.xcodeproj/project.pbxproj

    r46344 r46565  
    153153                939810350824BF01008DF038 /* WebPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 848DFF840365FE6A00CA2ACA /* WebPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
    154154                939810360824BF01008DF038 /* WebPluginContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 848DFF850365FE6A00CA2ACA /* WebPluginContainer.h */; settings = {ATTRIBUTES = (Public, ); }; };
    155                 939810370824BF01008DF038 /* WebPluginController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8467275C0367158500CA2ACA /* WebPluginController.h */; settings = {ATTRIBUTES = (Private, ); }; };
     155                939810370824BF01008DF038 /* WebPluginController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8467275C0367158500CA2ACA /* WebPluginController.h */; };
    156156                939810380824BF01008DF038 /* WebPluginDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F717200288493C018635CA /* WebPluginDatabase.h */; settings = {ATTRIBUTES = (Private, ); }; };
    157157                939810390824BF01008DF038 /* WebPluginPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E4AF4B036659440000E506 /* WebPluginPackage.h */; };
  • trunk/WebKit/mac/ChangeLog

    r46558 r46565  
     12009-07-29  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/27788> Don't export WebPluginController.h as a private header
     4
     5        Reviewed by Mark Rowe.
     6
     7        * Plugins/WebPluginController.h: Changed #import of
     8        WebPluginContainerCheck.h to use a framework-style include in
     9        case other platforms wish to export WebPluginController.h as a
     10        private header.
     11
    1122009-07-29  Kevin McCullough  <kmccullough@apple.com>
    213
  • trunk/WebKit/mac/Plugins/WebPluginController.h

    r42786 r46565  
    2828
    2929#import <WebKit/WebBasePluginPackage.h>
    30 #import "WebPluginContainerCheck.h"
     30#import <WebKit/WebPluginContainerCheck.h>
    3131
    3232@class WebFrame;
Note: See TracChangeset for help on using the changeset viewer.