From 872f3a9486e431851b0b97599781e743561ee020 Mon Sep 17 00:00:00 2001 From: "jamesr@chromium.org" Date: Tue, 21 May 2013 08:16:08 +0000 Subject: Move child-common classes to content/common_child We need a place to put code that is shared between child processes of different types but not used in the browser process. For instance, the NPObject bindings code is used in the plugin and renderer processes but depends on WebBindings which the browser shouldn't depend on. Some web platform features require shared code between renderer and worker processe. The WebKit image decoders are used by worker, renderer and utility processes. This creates a content/common_child directory for code shared by more than one child process type. content/common_child can depend on content/common and all content/ subdirs except for content/browser and content/common can depend on it. The java bridge code is (more than a) bit busted since it pulls the NPObject bindings in to the browser, but since this code is only intended for use on android single-process configurations I've just created DEPS exceptions for this bit of code. BUG=241606 Review URL: https://chromiumcodereview.appspot.com/15047014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201252 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc_message_start.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ipc') diff --git a/ipc/ipc_message_start.h b/ipc/ipc_message_start.h index fa98979..d8d8b35b 100644 --- a/ipc/ipc_message_start.h +++ b/ipc/ipc_message_start.h @@ -13,6 +13,7 @@ enum IPCMessageStart { ViewMsgStart, InputMsgStart, PluginMsgStart, + PluginProcessMsgStart, ProfileImportMsgStart, TestMsgStart, DevToolsMsgStart, -- cgit v1.1