diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 12:42:45 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 12:42:45 +0000 |
commit | 44042881fe6e1ac96d3da6fe3c4b4f0bbd45dc9e (patch) | |
tree | b5c29f340d422c9edab8e88a33924cdb4b53d705 /ipc | |
parent | d550b90daafa43bd067a58948c622f265670aa2c (diff) | |
download | chromium_src-44042881fe6e1ac96d3da6fe3c4b4f0bbd45dc9e.zip chromium_src-44042881fe6e1ac96d3da6fe3c4b4f0bbd45dc9e.tar.gz chromium_src-44042881fe6e1ac96d3da6fe3c4b4f0bbd45dc9e.tar.bz2 |
Separate EmbeddedWorker messages into another file to use different msg class
So that we can rely on IPC_MESSAGE_CLASS(msg) check to
determine which messages we want to relay onto another thread.
Mostly just shuffling,
- Separated EmbeddedWorker messages out of service_worker_messages.h into embedded_worker_messages.h
- Added a new message class for that
- Created a new directory content/common/service_worker (and OWNERS file) as now we have multiple header files for SW under common/
BUG=313530
Review URL: https://codereview.chromium.org/127583002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243871 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 e5b7c3d..a6331c9e 100644 --- a/ipc/ipc_message_start.h +++ b/ipc/ipc_message_start.h @@ -92,6 +92,7 @@ enum IPCMessageStart { EncryptedMediaMsgStart, ServiceWorkerMsgStart, MessagePortMsgStart, + EmbeddedWorkerMsgStart, EmbeddedWorkerContextMsgStart, LastIPCMsgStart // Must come last. }; |