Bug 103044 - [EFL][WK2] Buildfix when ENABLE_NETSCAPE_PLUGIN_API is disabled
Summary: [EFL][WK2] Buildfix when ENABLE_NETSCAPE_PLUGIN_API is disabled
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit EFL (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: KwangYong Choi
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-22 02:26 PST by KwangYong Choi
Modified: 2012-11-22 17:53 PST (History)
5 users (show)

See Also:


Attachments
Patch (1.59 KB, patch)
2012-11-22 02:27 PST, KwangYong Choi
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description KwangYong Choi 2012-11-22 02:26:07 PST
enum ProcessType {
        WebProcess,
#if ENABLE(PLUGIN_PROCESS)
        PluginProcess,
#endif
#if ENABLE(NETWORK_PROCESS)
        NetworkProcess,
#endif
#if ENABLE(SHARED_WORKER_PROCESS)
        SharedWorkerProcess
#endif
    };

enum ProcessType has PluginProcess only if ENABLE(PLUGIN_PROCESS) is enabled. So, guard PluginProcess with ENABLE(PLUGIN_PROCESS).
Comment 1 KwangYong Choi 2012-11-22 02:27:12 PST
Created attachment 175631 [details]
Patch
Comment 2 Kentaro Hara 2012-11-22 04:59:17 PST
Comment on attachment 175631 [details]
Patch

ok
Comment 3 WebKit Review Bot 2012-11-22 17:53:45 PST
Comment on attachment 175631 [details]
Patch

Clearing flags on attachment: 175631

Committed r135551: <http://trac.webkit.org/changeset/135551>
Comment 4 WebKit Review Bot 2012-11-22 17:53:49 PST
All reviewed patches have been landed.  Closing bug.