diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 23:34:16 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 23:34:16 +0000 |
commit | 21fa3a157739a857f1882072179f1bd3d978c368 (patch) | |
tree | 731cee107cd53590baf4f6f97e273d5378e03e7e /chrome/app/chrome_command_ids.h | |
parent | 6df403010254c73428c83e553654ce5dafa7dc00 (diff) | |
download | chromium_src-21fa3a157739a857f1882072179f1bd3d978c368.zip chromium_src-21fa3a157739a857f1882072179f1bd3d978c368.tar.gz chromium_src-21fa3a157739a857f1882072179f1bd3d978c368.tar.bz2 |
ipc: Simplify the magic required to create IPC message headers.This gets rid of having to include the files in a magic place because of xcode dependency issues, and just makes it simpler to create new IPC message classes. It also gets rid of including the X_messages_internal.h file multiple times, which simplifies things and should make the build a little faster.
In a future change, I will remove the "internal.h" files since they're no longer needed.
Review URL: http://codereview.chromium.org/5526008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68664 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_command_ids.h')
-rw-r--r-- | chrome/app/chrome_command_ids.h | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/chrome/app/chrome_command_ids.h b/chrome/app/chrome_command_ids.h index 57eec01..2372acee 100644 --- a/chrome/app/chrome_command_ids.h +++ b/chrome/app/chrome_command_ids.h @@ -5,25 +5,9 @@ // This file lists all the command IDs understood by e.g. the browser. // It is used by Windows RC files, Mac NIB files, and other platforms too. -#define IDC_View 4000 -#define IDC_ViewHost 4001 -#define IDC_Plugin 4002 -#define IDC_PluginHost 4003 -#define IDC_NPObject 4004 -#define IDC_PluginProcess 4005 -#define IDC_PluginProcessHost 4006 -#define IDC_ViewAll 4007 -#define IDC_ViewNone 4008 -#define IDC_ViewHostAll 4009 -#define IDC_ViewHostNone 4010 -#define IDC_PluginAll 4011 -#define IDC_PluginNone 4012 -#define IDC_NPObjectAll 4013 -#define IDC_NPObjectNone 4014 -#define IDC_PluginHostAll 4015 -#define IDC_PluginHostNone 4016 -#define IDC_DevToolsAgent 4017 -#define IDC_DevToolsClient 4018 +#define IDC_Messages 4000 +#define IDC_MessagesAll 4007 +#define IDC_MessagesNone 4008 // NOTE: Within each of the following sections, the IDs are ordered roughly by // how they appear in the GUI/menus (left to right, top to bottom, etc.). |