From 21fa3a157739a857f1882072179f1bd3d978c368 Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Wed, 8 Dec 2010 23:34:16 +0000 Subject: 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 --- chrome/app/chrome_command_ids.h | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) (limited to 'chrome/app/chrome_command_ids.h') 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.). -- cgit v1.1