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

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

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for tapted Created 4 years 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 #define IDC_CONTENT_CONTEXT_DELETE 50143 264 #define IDC_CONTENT_CONTEXT_DELETE 50143
265 #define IDC_CONTENT_CONTEXT_UNDO 50144 265 #define IDC_CONTENT_CONTEXT_UNDO 50144
266 #define IDC_CONTENT_CONTEXT_REDO 50145 266 #define IDC_CONTENT_CONTEXT_REDO 50145
267 #define IDC_CONTENT_CONTEXT_SELECTALL 50146 267 #define IDC_CONTENT_CONTEXT_SELECTALL 50146
268 #define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147 268 #define IDC_CONTENT_CONTEXT_PASTE_AND_MATCH_STYLE 50147
269 // Other items. 269 // Other items.
270 #define IDC_CONTENT_CONTEXT_TRANSLATE 50150 270 #define IDC_CONTENT_CONTEXT_TRANSLATE 50150
271 #define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151 271 #define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151
272 #define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152 272 #define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152
273 #define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153 273 #define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153
274 #define IDC_CONTENT_CONTEXT_LOOK_UP 50154
275 #define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155 274 #define IDC_CONTENT_CONTEXT_NO_SPELLING_SUGGESTIONS 50155
276 #define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156 275 #define IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION 50156
277 #define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157 276 #define IDC_CONTENT_CONTEXT_SPELLING_TOGGLE 50157
278 #define IDC_CONTENT_CONTEXT_SPEECH_MENU 50158
279 #define IDC_CONTENT_CONTEXT_SPEECH_START_SPEAKING 50159
280 #define IDC_CONTENT_CONTEXT_SPEECH_STOP_SPEAKING 50160
281 #define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161 277 #define IDC_CONTENT_CONTEXT_INSPECTBACKGROUNDPAGE 50161
282 #define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162 278 #define IDC_CONTENT_CONTEXT_RELOAD_PACKAGED_APP 50162
283 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163 279 #define IDC_CONTENT_CONTEXT_RESTART_PACKAGED_APP 50163
284 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165 280 #define IDC_CONTENT_CONTEXT_FORCESAVEPASSWORD 50165
285 #define IDC_CONTENT_CONTEXT_GENERATEPASSWORD 50166 281 #define IDC_CONTENT_CONTEXT_GENERATEPASSWORD 50166
286 #define IDC_CONTENT_CONTEXT_EXIT_FULLSCREEN 50167 282 #define IDC_CONTENT_CONTEXT_EXIT_FULLSCREEN 50167
287 // Frame items. 283 // Frame items.
288 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170 284 #define IDC_CONTENT_CONTEXT_RELOADFRAME 50170
289 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171 285 #define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50171
290 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172 286 #define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50172
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx 351 // See http://msdn.microsoft.com/en-us/library/t2zechd4(VS.71).aspx
356 352
357 // Starting command id for menus showing bookmarks (such as the wrench menu). 353 // Starting command id for menus showing bookmarks (such as the wrench menu).
358 // While command ids passed to Windows functions must not be higher than 0xDFFF, 354 // While command ids passed to Windows functions must not be higher than 0xDFFF,
359 // these IDs are not exposed to the native system and thus can be in this 355 // these IDs are not exposed to the native system and thus can be in this
360 // otherwise-reserved range. No command used in a menu (such as the wrench menu) 356 // otherwise-reserved range. No command used in a menu (such as the wrench menu)
361 // should be higher than this, otherwise it'll conflict. 357 // should be higher than this, otherwise it'll conflict.
362 #define IDC_FIRST_BOOKMARK_MENU 0xE000 358 #define IDC_FIRST_BOOKMARK_MENU 0xE000
363 359
364 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_ 360 #endif // CHROME_APP_CHROME_COMMAND_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698