Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1263)

Side by Side Diff: chrome/app/chrome_command_ids.h

Issue 23514021: Add Hide to app menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_APP_CHROME_COMMAND_IDS_H_ 5 #ifndef CHROME_APP_CHROME_COMMAND_IDS_H_
6 #define CHROME_APP_CHROME_COMMAND_IDS_H_ 6 #define CHROME_APP_CHROME_COMMAND_IDS_H_
7 7
8 // This file lists all the command IDs understood by e.g. the browser. 8 // This file lists all the command IDs understood by e.g. the browser.
9 // It is used by Windows RC files, Mac NIB files, and other platforms too. 9 // It is used by Windows RC files, Mac NIB files, and other platforms too.
10 10
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400 235 #define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400
236 236
237 // Speech input 237 // Speech input
238 #define IDC_TOGGLE_SPEECH_INPUT 42500 238 #define IDC_TOGGLE_SPEECH_INPUT 42500
239 239
240 // Identifiers for platform-specific items. 240 // Identifiers for platform-specific items.
241 // Placed in a common file to help insure they never collide. 241 // Placed in a common file to help insure they never collide.
242 #define IDC_VIEW_MENU 44000 // OSX only 242 #define IDC_VIEW_MENU 44000 // OSX only
243 #define IDC_FILE_MENU 44001 // OSX only 243 #define IDC_FILE_MENU 44001 // OSX only
244 #define IDC_CHROME_MENU 44002 // OSX only 244 #define IDC_CHROME_MENU 44002 // OSX only
245 #define IDC_HIDE_APP 44003 // OSX only
tapted 2013/08/30 07:46:25 I don't think this should be _APP, since in the de
jackhou1 2013/09/03 01:20:49 The string is IDS_HIDE_APP_MAC, and I think in mos
tapted 2013/09/03 08:17:25 Cool - that makes sense.
245 #define IDC_HISTORY_MENU 46000 // OSX only 246 #define IDC_HISTORY_MENU 46000 // OSX only
246 #define IDC_PROFILE_MAIN_MENU 46100 // OSX only 247 #define IDC_PROFILE_MAIN_MENU 46100 // OSX only
247 #define IDC_INPUT_METHODS_MENU 46300 // Linux only 248 #define IDC_INPUT_METHODS_MENU 46300 // Linux only
248 249
249 // Custom context menu entries 250 // Custom context menu entries
250 #define IDC_CONTENT_CONTEXT_CUSTOM_FIRST 47000 251 #define IDC_CONTENT_CONTEXT_CUSTOM_FIRST 47000
251 #define IDC_CONTENT_CONTEXT_CUSTOM_LAST 48000 252 #define IDC_CONTENT_CONTEXT_CUSTOM_LAST 48000
252 253
253 // Context menu items added by extensions. 254 // Context menu items added by extensions.
254 #define IDC_EXTENSIONS_CONTEXT_CUSTOM_FIRST 49000 255 #define IDC_EXTENSIONS_CONTEXT_CUSTOM_FIRST 49000
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 345
345 // Protocol handler menu entries 346 // Protocol handler menu entries
346 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000 347 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_FIRST 52000
347 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199 348 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_LAST 52199
348 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200 349 #define IDC_CONTENT_CONTEXT_PROTOCOL_HANDLER_SETTINGS 52200
349 350
350 // NOTE: The last valid command value is 57343 (0xDFFF) 351 // NOTE: The last valid command value is 57343 (0xDFFF)
351 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx 352 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx
352 353
353 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ 354 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698