Changeset 45579 in webkit


Ignore:
Timestamp:
Jul 6, 2009 7:14:33 PM (15 years ago)
Author:
ddkilzer@apple.com
Message:

Bug 27003: Build fix when USE(PLUGIN_HOST_PROCESS) is disabled

<https://bugs.webkit.org/show_bug.cgi?id=27003>

Reviewed by Geoff Garen.

  • Plugins/WebNetscapeContainerCheckContextInfo.h: Added #if USE(PLUGIN_HOST_PROCESS)/#endif guards.
  • Plugins/WebNetscapeContainerCheckContextInfo.mm: Ditto.
  • Plugins/WebNetscapeContainerCheckPrivate.mm: Ditto.
Location:
trunk/WebKit/mac
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r45565 r45579  
     12009-07-06  David Kilzer  <ddkilzer@apple.com>
     2
     3        Bug 27003: Build fix when USE(PLUGIN_HOST_PROCESS) is disabled
     4
     5        <https://bugs.webkit.org/show_bug.cgi?id=27003>
     6
     7        Reviewed by Geoff Garen.
     8
     9        * Plugins/WebNetscapeContainerCheckContextInfo.h: Added #if
     10        USE(PLUGIN_HOST_PROCESS)/#endif guards.
     11        * Plugins/WebNetscapeContainerCheckContextInfo.mm: Ditto.
     12        * Plugins/WebNetscapeContainerCheckPrivate.mm: Ditto.
     13
    1142009-07-06  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/WebKit/mac/Plugins/WebNetscapeContainerCheckContextInfo.h

    r43009 r45579  
    2929#import "WebBaseNetscapePluginView.h"
    3030
     31#if USE(PLUGIN_HOST_PROCESS)
     32
    3133@interface WebNetscapeContainerCheckContextInfo : NSObject {
    3234    uint32 _checkRequestID;
     
    4143
    4244@end
     45
     46#endif // USE(PLUGIN_HOST_PROCESS)
  • trunk/WebKit/mac/Plugins/WebNetscapeContainerCheckContextInfo.mm

    r43009 r45579  
    2525
    2626#import "WebNetscapeContainerCheckContextInfo.h"
     27
     28#if USE(PLUGIN_HOST_PROCESS)
    2729
    2830@implementation WebNetscapeContainerCheckContextInfo
     
    5658
    5759@end
     60
     61#endif // USE(PLUGIN_HOST_PROCESS)
  • trunk/WebKit/mac/Plugins/WebNetscapeContainerCheckPrivate.mm

    r43772 r45579  
    3131#import "WebNetscapePluginView.h"
    3232
     33#if USE(PLUGIN_HOST_PROCESS)
     34
    3335WKNBrowserContainerCheckFuncs *browserContainerCheckFuncs()
    3436{
     
    4345    return &funcs;
    4446}
     47
     48#endif // USE(PLUGIN_HOST_PROCESS)
Note: See TracChangeset for help on using the changeset viewer.