diff options
author | jeremya@chromium.org <jeremya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 05:54:50 +0000 |
---|---|---|
committer | jeremya@chromium.org <jeremya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 05:54:50 +0000 |
commit | acd2121ce008fa99fa0e89255b1b95b616f02beb (patch) | |
tree | 21af3be507c53f610c51ccabe8a1b7044f87f5ba /ipc | |
parent | ffec1ff8da92badfa2a46037547d697a315ea4c5 (diff) | |
download | chromium_src-acd2121ce008fa99fa0e89255b1b95b616f02beb.zip chromium_src-acd2121ce008fa99fa0e89255b1b95b616f02beb.tar.gz chromium_src-acd2121ce008fa99fa0e89255b1b95b616f02beb.tar.bz2 |
[mac] App shims
The AppShimHostController uses an IPC::ChannelFactory to listen on a socket for
app shims connecting. App shims send a launch message when they start, so we
translate that into actually launching the app.
I changed chrome_main_app_mode_mac.mm to use the IPC channel instead of sending
an Apple Event as before, and added an event loop and an IO thread.
BUG=138733
Review URL: https://chromiumcodereview.appspot.com/12623005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188675 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_message_start.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/ipc_message_start.h b/ipc/ipc_message_start.h index a277f02..b535e92 100644 --- a/ipc/ipc_message_start.h +++ b/ipc/ipc_message_start.h @@ -75,6 +75,7 @@ enum IPCMessageStart { PeerConnectionTrackerMsgStart, VisitedLinkMsgStart, OneClickSigninMsgStart, + AppShimMsgStart, LastIPCMsgStart // Must come last. }; |