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

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

Issue 1760773004: Add "Open with <ARC-app-name>" items to the context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: return std::pair Created 4 years, 9 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
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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 317 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163
318 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 318 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165
319 #define IDC_CONTENT_CONTEXT_GENERATEPASSWORD 50166 319 #define IDC_CONTENT_CONTEXT_GENERATEPASSWORD 50166
320 // Frame items. 320 // Frame items.
321 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 321 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170
322 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 322 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171
323 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 323 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172
324 // Search items. 324 // Search items.
325 #define IDC_CONTENT_CONTEXT_GOTOURL 50180 325 #define IDC_CONTENT_CONTEXT_GOTOURL 50180
326 #define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181 326 #define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50181
327 // Open with items.
328 #define IDC_CONTENT_CONTEXT_OPEN_WITH1 50190
329 #define IDC_CONTENT_CONTEXT_OPEN_WITH2 50191
330 #define IDC_CONTENT_CONTEXT_OPEN_WITH3 50192
331 #define IDC_CONTENT_CONTEXT_OPEN_WITH4 50193
332 #define IDC_CONTENT_CONTEXT_OPEN_WITH_LAST IDC_CONTENT_CONTEXT_OPEN_WITH4
333 // Open with ARC app items.
334 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP1 50200
335 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP2 50201
336 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP3 50202
337 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP4 50203
338 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP5 50204
339 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP6 50205
340 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP7 50206
341 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP8 50207
342 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP9 50208
343 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP10 50209
344 #define IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP_LAST \
345 IDC_CONTENT_CONTEXT_OPEN_WITH_ARC_APP10
327 346
328 // Context menu items in the bookmark bar 347 // Context menu items in the bookmark bar
329 #define IDC_BOOKMARK_BAR_OPEN_ALL 51000 348 #define IDC_BOOKMARK_BAR_OPEN_ALL 51000
330 #define IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW 51001 349 #define IDC_BOOKMARK_BAR_OPEN_ALL_NEW_WINDOW 51001
331 #define IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO 51002 350 #define IDC_BOOKMARK_BAR_OPEN_ALL_INCOGNITO 51002
332 #define IDC_BOOKMARK_BAR_OPEN_INCOGNITO 51003 351 #define IDC_BOOKMARK_BAR_OPEN_INCOGNITO 51003
333 #define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004 352 #define IDC_BOOKMARK_BAR_RENAME_FOLDER 51004
334 #define IDC_BOOKMARK_BAR_EDIT 51005 353 #define IDC_BOOKMARK_BAR_EDIT 51005
335 #define IDC_BOOKMARK_BAR_REMOVE 51006 354 #define IDC_BOOKMARK_BAR_REMOVE 51006
336 #define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007 355 #define IDC_BOOKMARK_BAR_ADD_NEW_BOOKMARK 51007
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx 393 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx
375 394
376 // Starting command id for menus showing bookmarks (such as the wrench menu). 395 // Starting command id for menus showing bookmarks (such as the wrench menu).
377 // While command ids passed to Windows functions must not be higher than 0xDFFF, 396 // While command ids passed to Windows functions must not be higher than 0xDFFF,
378 // these IDs are not exposed to the native system and thus can be in this 397 // these IDs are not exposed to the native system and thus can be in this
379 // otherwise-reserved range. No command used in a menu (such as the wrench menu) 398 // otherwise-reserved range. No command used in a menu (such as the wrench menu)
380 // should be higher than this, otherwise it'll conflict. 399 // should be higher than this, otherwise it'll conflict.
381 #define IDC_FIRST_BOOKMARK_MENU 0xE000 400 #define IDC_FIRST_BOOKMARK_MENU 0xE000
382 401
383 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ 402 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698