Split out command IDs from chrome_dll_resource.h.
The name of this file is a leftover from Windows. Split the command ids (which are used on all platforms) out, leaving just the Windows-specific resource IDs in the original file. TEST=compiles Review URL: http://codereview.chromium.org/4710001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65453 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
chrome
app
browser
app_controller_mac.mmapp_controller_mac_unittest.mm
chrome_dll.gypichrome_tests.gypiautocomplete
autocomplete_edit.ccautocomplete_edit_view_browsertest.ccautocomplete_edit_view_gtk.ccautocomplete_edit_view_win.cc
automation
background_mode_manager.ccbrowser_browsertest.ccbrowser_commands_unittest.ccbrowser_uitest.cccharacter_encoding.ccchromeos
dom_ui
frame
status
cocoa
accelerators_cocoa.haccelerators_cocoa.mmaccelerators_cocoa_unittest.mm
collected_cookies_uitest.ccbookmarks
browser_window_cocoa.mmbrowser_window_controller.hbrowser_window_controller.mmbrowser_window_controller_unittest.mmchrome_event_processing_window_unittest.mmencoding_menu_controller_delegate_mac.mmframed_browser_window_unittest.mmhistory_menu_bridge.mmhistory_menu_bridge_unittest.mmhistory_menu_cocoa_controller.mmhistory_menu_cocoa_controller_unittest.mmlocation_bar
autocomplete_text_field_editor.mmautocomplete_text_field_editor_unittest.mmlocation_bar_view_mac.mmstar_decoration.mm
reload_button.mmreload_button_unittest.mmtab_strip_controller.mmtabpose_window.mmtoolbar_controller.mmtoolbar_controller_unittest.mmtranslate
wrench_menu_button_cell_unittest.mmwrench_menu_controller.mmwrench_menu_controller_unittest.mmdom_ui
download
encoding_menu_controller.ccencoding_menu_controller_unittest.ccextensions
external_tab_container_win.ccglobal_keyboard_shortcuts_mac.mmglobal_keyboard_shortcuts_mac_unittest.mmgtk
accelerators_gtk.ccback_forward_button_gtk.ccbrowser_titlebar.ccbrowser_toolbar_gtk.ccbrowser_window_gtk.cclocation_bar_view_gtk.ccmenu_gtk.ccreload_button_gtk.cc
tabs
renderer_host
repost_form_warning_uitest.ccsessions
ssl
sync
tab_contents
render_view_context_menu.ccrender_view_context_menu_gtk.ccrender_view_context_menu_mac.mmview_source_uitest.cc
tab_restore_uitest.cctask_manager
translate
ui
views
about_ipc_dialog.ccaccelerator_table_gtk.ccbookmark_bubble_view.ccconstrained_window_win.ccfind_bar_host_uitest.cc
wrench_menu_model.ccwrench_menu_model_unittest.ccframe
fullscreen_exit_bubble.cclocation_bar
reload_button.cctab_contents
tab_icon_view.cctabs
task_manager_view.cctoolbar_view.ccwrench_menu.ccrenderer
test
automated_ui_tests
automation
interactive_ui
pyautolib
startup
tab_switching
ui
webdriver
worker
chrome_frame
275
chrome/app/chrome_command_ids.h
Normal file
275
chrome/app/chrome_command_ids.h
Normal file
@ -0,0 +1,275 @@
|
||||
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
// 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
|
||||
|
||||
// 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.).
|
||||
|
||||
// Navigation commands
|
||||
// TODO: Reorder to be in visible order; collapse holes
|
||||
#define IDC_BACK 33000
|
||||
#define IDC_FORWARD 33001
|
||||
#define IDC_RELOAD 33002
|
||||
#define IDC_HOME 33003
|
||||
#define IDC_OPEN_CURRENT_URL 33004
|
||||
#define IDC_STOP 33006
|
||||
#define IDC_RELOAD_IGNORING_CACHE 33007
|
||||
|
||||
// Window management commands
|
||||
#define IDC_NEW_WINDOW 34000
|
||||
#define IDC_NEW_INCOGNITO_WINDOW 34001
|
||||
#define IDC_CLOSE_WINDOW 34012
|
||||
#define IDC_ALWAYS_ON_TOP 34013
|
||||
#define IDC_NEW_TAB 34014
|
||||
#define IDC_CLOSE_TAB 34015
|
||||
#define IDC_SELECT_NEXT_TAB 34016
|
||||
#define IDC_SELECT_PREVIOUS_TAB 34017
|
||||
#define IDC_SELECT_TAB_0 34018
|
||||
#define IDC_SELECT_TAB_1 34019
|
||||
#define IDC_SELECT_TAB_2 34020
|
||||
#define IDC_SELECT_TAB_3 34021
|
||||
#define IDC_SELECT_TAB_4 34022
|
||||
#define IDC_SELECT_TAB_5 34023
|
||||
#define IDC_SELECT_TAB_6 34024
|
||||
#define IDC_SELECT_TAB_7 34025
|
||||
#define IDC_SELECT_LAST_TAB 34026
|
||||
#define IDC_DUPLICATE_TAB 34027
|
||||
#define IDC_RESTORE_TAB 34028
|
||||
#define IDC_SHOW_AS_TAB 34029
|
||||
#define IDC_FULLSCREEN 34030
|
||||
#define IDC_EXIT 34031
|
||||
#define IDC_MOVE_TAB_NEXT 34032
|
||||
#define IDC_MOVE_TAB_PREVIOUS 34033
|
||||
#define IDC_TOGGLE_VERTICAL_TABS 34034
|
||||
#define IDC_SEARCH 34035
|
||||
#define IDC_TABPOSE 34036
|
||||
|
||||
// Page-related commands
|
||||
#define IDC_BOOKMARK_PAGE 35000
|
||||
#define IDC_BOOKMARK_ALL_TABS 35001
|
||||
#define IDC_VIEW_SOURCE 35002
|
||||
#define IDC_PRINT 35003
|
||||
#define IDC_SAVE_PAGE 35004
|
||||
#define IDC_ENCODING_MENU 35005
|
||||
#define IDC_EMAIL_PAGE_LOCATION 35006
|
||||
|
||||
// When adding a new encoding to this list, be sure to append it to the
|
||||
// EncodingMenuController::kValidEncodingIds array in
|
||||
// encoding_menu_controller.cc.
|
||||
#define IDC_ENCODING_AUTO_DETECT 35500
|
||||
#define IDC_ENCODING_UTF8 35501
|
||||
#define IDC_ENCODING_UTF16LE 35502
|
||||
#define IDC_ENCODING_ISO88591 35503
|
||||
#define IDC_ENCODING_WINDOWS1252 35504
|
||||
#define IDC_ENCODING_GBK 35505
|
||||
#define IDC_ENCODING_GB18030 35506
|
||||
#define IDC_ENCODING_BIG5 35507
|
||||
#define IDC_ENCODING_BIG5HKSCS 35508
|
||||
#define IDC_ENCODING_KOREAN 35509
|
||||
#define IDC_ENCODING_SHIFTJIS 35510
|
||||
#define IDC_ENCODING_ISO2022JP 35511
|
||||
#define IDC_ENCODING_EUCJP 35512
|
||||
#define IDC_ENCODING_THAI 35513
|
||||
#define IDC_ENCODING_ISO885915 35514
|
||||
#define IDC_ENCODING_MACINTOSH 35515
|
||||
#define IDC_ENCODING_ISO88592 35516
|
||||
#define IDC_ENCODING_WINDOWS1250 35517
|
||||
#define IDC_ENCODING_ISO88595 35518
|
||||
#define IDC_ENCODING_WINDOWS1251 35519
|
||||
#define IDC_ENCODING_KOI8R 35520
|
||||
#define IDC_ENCODING_KOI8U 35521
|
||||
#define IDC_ENCODING_ISO88597 35522
|
||||
#define IDC_ENCODING_WINDOWS1253 35523
|
||||
#define IDC_ENCODING_ISO88594 35524
|
||||
#define IDC_ENCODING_ISO885913 35525
|
||||
#define IDC_ENCODING_WINDOWS1257 35526
|
||||
#define IDC_ENCODING_ISO88593 35527
|
||||
#define IDC_ENCODING_ISO885910 35528
|
||||
#define IDC_ENCODING_ISO885914 35529
|
||||
#define IDC_ENCODING_ISO885916 35530
|
||||
#define IDC_ENCODING_WINDOWS1254 35531
|
||||
#define IDC_ENCODING_ISO88596 35532
|
||||
#define IDC_ENCODING_WINDOWS1256 35533
|
||||
#define IDC_ENCODING_ISO88598 35534
|
||||
#define IDC_ENCODING_WINDOWS1255 35535
|
||||
#define IDC_ENCODING_WINDOWS1258 35536
|
||||
#define IDC_ENCODING_ISO88598I 35537
|
||||
|
||||
// Clipboard commands
|
||||
#define IDC_CUT 36000
|
||||
#define IDC_COPY 36001
|
||||
#define IDC_COPY_URL 36002
|
||||
#define IDC_PASTE 36003
|
||||
#define IDC_EDIT_MENU 36004
|
||||
|
||||
// Find-in-page
|
||||
#define IDC_FIND 37000
|
||||
#define IDC_FIND_NEXT 37001
|
||||
#define IDC_FIND_PREVIOUS 37002
|
||||
|
||||
// Zoom
|
||||
#define IDC_ZOOM_MENU 38000
|
||||
#define IDC_ZOOM_PLUS 38001
|
||||
#define IDC_ZOOM_NORMAL 38002
|
||||
#define IDC_ZOOM_MINUS 38003
|
||||
#define IDC_ZOOM_PERCENT_DISPLAY 38004
|
||||
|
||||
// Focus various bits of UI
|
||||
#define IDC_FOCUS_TOOLBAR 39000
|
||||
#define IDC_FOCUS_LOCATION 39001
|
||||
#define IDC_FOCUS_SEARCH 39002
|
||||
#define IDC_FOCUS_MENU_BAR 39003
|
||||
#define IDC_FOCUS_NEXT_PANE 39004
|
||||
#define IDC_FOCUS_PREVIOUS_PANE 39005
|
||||
#define IDC_FOCUS_BOOKMARKS 39006
|
||||
#define IDC_FOCUS_CHROMEOS_STATUS 39007
|
||||
|
||||
// Show various bits of UI
|
||||
#define IDC_OPEN_FILE 40000
|
||||
#define IDC_CREATE_SHORTCUTS 40001
|
||||
#define IDC_DEVELOPER_MENU 40002
|
||||
#define IDC_DEV_TOOLS 40003
|
||||
#define IDC_DEV_TOOLS_CONSOLE 40004
|
||||
#define IDC_TASK_MANAGER 40005
|
||||
#define IDC_REPORT_BUG 40008
|
||||
#define IDC_SHOW_BOOKMARK_BAR 40009
|
||||
#define IDC_SHOW_HISTORY 40010
|
||||
#define IDC_SHOW_BOOKMARK_MANAGER 40011
|
||||
#define IDC_SHOW_DOWNLOADS 40012
|
||||
#define IDC_CLEAR_BROWSING_DATA 40013
|
||||
#define IDC_IMPORT_SETTINGS 40014
|
||||
#define IDC_OPTIONS 40015
|
||||
#define IDC_EDIT_SEARCH_ENGINES 40016
|
||||
#define IDC_VIEW_PASSWORDS 40017
|
||||
#define IDC_ABOUT 40018
|
||||
#define IDC_HELP_PAGE 40019
|
||||
#define IDC_SHOW_APP_MENU 40020
|
||||
#define IDC_MANAGE_EXTENSIONS 40022
|
||||
#define IDC_AUTOFILL_DEFAULT 40023
|
||||
#define IDC_DEV_TOOLS_INSPECT 40025
|
||||
#define IDC_UPGRADE_DIALOG 40026
|
||||
#define IDC_VIEW_INCOMPATIBILITIES 40027
|
||||
|
||||
// Spell-check
|
||||
// Insert any additional suggestions before _LAST; these have to be consecutive.
|
||||
#define IDC_SPELLCHECK_SUGGESTION_0 41000
|
||||
#define IDC_SPELLCHECK_SUGGESTION_1 41001
|
||||
#define IDC_SPELLCHECK_SUGGESTION_2 41002
|
||||
#define IDC_SPELLCHECK_SUGGESTION_3 41003
|
||||
#define IDC_SPELLCHECK_SUGGESTION_4 41004
|
||||
#define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4
|
||||
#define IDC_SPELLCHECK_MENU 41005
|
||||
// Language entries are inserted using autogenerated values between
|
||||
// [_FIRST, _LAST).
|
||||
#define IDC_SPELLCHECK_LANGUAGES_FIRST 41006
|
||||
#define IDC_SPELLCHECK_LANGUAGES_LAST 41106
|
||||
#define IDC_CHECK_SPELLING_OF_THIS_FIELD 41107
|
||||
#define IDC_SYNC_BOOKMARKS 41108
|
||||
#define IDC_SPELLPANEL_TOGGLE 41109
|
||||
#define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110
|
||||
|
||||
// Writing direction
|
||||
#define IDC_WRITING_DIRECTION_MENU 41120 // OSX only
|
||||
#define IDC_WRITING_DIRECTION_DEFAULT 41121 // OSX only
|
||||
#define IDC_WRITING_DIRECTION_LTR 41122 // OSX only
|
||||
#define IDC_WRITING_DIRECTION_RTL 41123 // OSX only
|
||||
|
||||
// Remoting
|
||||
#define IDC_REMOTING_SETUP 41140
|
||||
|
||||
// Translate
|
||||
#define IDC_TRANSLATE_OPTIONS_ALWAYS 42000
|
||||
#define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_LANG 42001
|
||||
#define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_SITE 42002
|
||||
#define IDC_TRANSLATE_REPORT_BAD_LANGUAGE_DETECTION 42003
|
||||
#define IDC_TRANSLATE_OPTIONS_ABOUT 42004
|
||||
#define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100
|
||||
#define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400
|
||||
|
||||
// Identifiers for platform-specific items.
|
||||
// Placed in a common file to help insure they never collide.
|
||||
#define IDC_BOOKMARK_MENU 43000 // OSX only
|
||||
#define IDC_VIEW_MENU 44000 // OSX only
|
||||
#define IDC_SYSTEM_OPTIONS 45000 // ChromeOS only
|
||||
#define IDC_INTERNET_OPTIONS 45100 // ChromeOS only
|
||||
#define IDC_LANGUAGE_OPTIONS 45200 // ChromeOS only
|
||||
#define IDC_HISTORY_MENU 46000 // OSX only
|
||||
#define IDC_INPUT_METHODS_MENU 46300 // Linux only
|
||||
|
||||
// Custom context menu entries
|
||||
#define IDC_CONTENT_CONTEXT_CUSTOM_FIRST 47000
|
||||
#define IDC_CONTENT_CONTEXT_CUSTOM_LAST 48000
|
||||
|
||||
// Context menu items added by extensions.
|
||||
#define IDC_EXTENSIONS_CONTEXT_CUSTOM_FIRST 49000
|
||||
#define IDC_EXTENSIONS_CONTEXT_CUSTOM_LAST 50000
|
||||
|
||||
// Context menu items in the render view.
|
||||
// Link items.
|
||||
#define IDC_CONTENT_CONTEXT_OPENLINKNEWTAB 50100
|
||||
#define IDC_CONTENT_CONTEXT_OPENLINKNEWWINDOW 50101
|
||||
#define IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD 50102
|
||||
#define IDC_CONTENT_CONTEXT_SAVELINKAS 50103
|
||||
#define IDC_CONTENT_CONTEXT_COPYLINKLOCATION 50104
|
||||
#define IDC_CONTENT_CONTEXT_COPYEMAILADDRESS 50105
|
||||
// Image items.
|
||||
#define IDC_CONTENT_CONTEXT_SAVEIMAGEAS 50110
|
||||
#define IDC_CONTENT_CONTEXT_COPYIMAGELOCATION 50111
|
||||
#define IDC_CONTENT_CONTEXT_COPYIMAGE 50112
|
||||
#define IDC_CONTENT_CONTEXT_OPENIMAGENEWTAB 50113
|
||||
// Audio/video items.
|
||||
#define IDC_CONTENT_CONTEXT_SAVEAVAS 50120
|
||||
#define IDC_CONTENT_CONTEXT_COPYAVLOCATION 50121
|
||||
#define IDC_CONTENT_CONTEXT_OPENAVNEWTAB 50122
|
||||
// Media items.
|
||||
#define IDC_CONTENT_CONTEXT_PLAYPAUSE 50130
|
||||
#define IDC_CONTENT_CONTEXT_MUTE 50131
|
||||
#define IDC_CONTENT_CONTEXT_LOOP 50132
|
||||
#define IDC_CONTENT_CONTEXT_CONTROLS 50133
|
||||
// Edit items.
|
||||
#define IDC_CONTENT_CONTEXT_COPY 50140
|
||||
#define IDC_CONTENT_CONTEXT_CUT 50141
|
||||
#define IDC_CONTENT_CONTEXT_PASTE 50142
|
||||
#define IDC_CONTENT_CONTEXT_DELETE 50143
|
||||
#define IDC_CONTENT_CONTEXT_UNDO 50144
|
||||
#define IDC_CONTENT_CONTEXT_REDO 50145
|
||||
#define IDC_CONTENT_CONTEXT_SELECTALL 50146
|
||||
// Other items.
|
||||
#define IDC_CONTENT_CONTEXT_TRANSLATE 50150
|
||||
#define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151
|
||||
#define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152
|
||||
#define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153
|
||||
#define IDC_CONTENT_CONTEXT_LOOK_UP_IN_DICTIONARY 50154
|
||||
// Frame items.
|
||||
#define IDC_CONTENT_CONTEXT_RELOADFRAME 50160
|
||||
#define IDC_CONTENT_CONTEXT_OPENFRAMENEWTAB 50161
|
||||
#define IDC_CONTENT_CONTEXT_OPENFRAMENEWWINDOW 50162
|
||||
#define IDC_CONTENT_CONTEXT_OPENFRAMEOFFTHERECORD 50163
|
||||
#define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50164
|
||||
#define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50165
|
||||
// Search items.
|
||||
#define IDC_CONTENT_CONTEXT_GOTOURL 50170
|
||||
#define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50171
|
@ -2,14 +2,6 @@
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
//{{NO_DEPENDENCIES}}
|
||||
//
|
||||
// What began as a Microsoft Visual C++ generated include file is now
|
||||
// edited by hand. Do not generate!!!
|
||||
//
|
||||
// Used by chrome_dll.rc, Mac nibs, ...
|
||||
//
|
||||
|
||||
#define IDR_MAINFRAME 101
|
||||
#define IDR_CHROMEFRAME 200
|
||||
|
||||
@ -43,284 +35,3 @@
|
||||
|
||||
#define IDD_IPC_SETTINGS 3000
|
||||
|
||||
#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
|
||||
|
||||
// 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.).
|
||||
|
||||
// Navigation commands
|
||||
// TODO: Reorder to be in visible order; collapse holes
|
||||
#define IDC_BACK 33000
|
||||
#define IDC_FORWARD 33001
|
||||
#define IDC_RELOAD 33002
|
||||
#define IDC_HOME 33003
|
||||
#define IDC_OPEN_CURRENT_URL 33004
|
||||
#define IDC_STOP 33006
|
||||
#define IDC_RELOAD_IGNORING_CACHE 33007
|
||||
|
||||
// Window management commands
|
||||
#define IDC_NEW_WINDOW 34000
|
||||
#define IDC_NEW_INCOGNITO_WINDOW 34001
|
||||
#define IDC_CLOSE_WINDOW 34012
|
||||
#define IDC_ALWAYS_ON_TOP 34013
|
||||
#define IDC_NEW_TAB 34014
|
||||
#define IDC_CLOSE_TAB 34015
|
||||
#define IDC_SELECT_NEXT_TAB 34016
|
||||
#define IDC_SELECT_PREVIOUS_TAB 34017
|
||||
#define IDC_SELECT_TAB_0 34018
|
||||
#define IDC_SELECT_TAB_1 34019
|
||||
#define IDC_SELECT_TAB_2 34020
|
||||
#define IDC_SELECT_TAB_3 34021
|
||||
#define IDC_SELECT_TAB_4 34022
|
||||
#define IDC_SELECT_TAB_5 34023
|
||||
#define IDC_SELECT_TAB_6 34024
|
||||
#define IDC_SELECT_TAB_7 34025
|
||||
#define IDC_SELECT_LAST_TAB 34026
|
||||
#define IDC_DUPLICATE_TAB 34027
|
||||
#define IDC_RESTORE_TAB 34028
|
||||
#define IDC_SHOW_AS_TAB 34029
|
||||
#define IDC_FULLSCREEN 34030
|
||||
#define IDC_EXIT 34031
|
||||
#define IDC_MOVE_TAB_NEXT 34032
|
||||
#define IDC_MOVE_TAB_PREVIOUS 34033
|
||||
#define IDC_TOGGLE_VERTICAL_TABS 34034
|
||||
#define IDC_SEARCH 34035
|
||||
#define IDC_TABPOSE 34036
|
||||
|
||||
// Page-related commands
|
||||
#define IDC_BOOKMARK_PAGE 35000
|
||||
#define IDC_BOOKMARK_ALL_TABS 35001
|
||||
#define IDC_VIEW_SOURCE 35002
|
||||
#define IDC_PRINT 35003
|
||||
#define IDC_SAVE_PAGE 35004
|
||||
#define IDC_ENCODING_MENU 35005
|
||||
#define IDC_EMAIL_PAGE_LOCATION 35006
|
||||
|
||||
// When adding a new encoding to this list, be sure to append it to the
|
||||
// EncodingMenuController::kValidEncodingIds array in
|
||||
// encoding_menu_controller.cc.
|
||||
#define IDC_ENCODING_AUTO_DETECT 35500
|
||||
#define IDC_ENCODING_UTF8 35501
|
||||
#define IDC_ENCODING_UTF16LE 35502
|
||||
#define IDC_ENCODING_ISO88591 35503
|
||||
#define IDC_ENCODING_WINDOWS1252 35504
|
||||
#define IDC_ENCODING_GBK 35505
|
||||
#define IDC_ENCODING_GB18030 35506
|
||||
#define IDC_ENCODING_BIG5 35507
|
||||
#define IDC_ENCODING_BIG5HKSCS 35508
|
||||
#define IDC_ENCODING_KOREAN 35509
|
||||
#define IDC_ENCODING_SHIFTJIS 35510
|
||||
#define IDC_ENCODING_ISO2022JP 35511
|
||||
#define IDC_ENCODING_EUCJP 35512
|
||||
#define IDC_ENCODING_THAI 35513
|
||||
#define IDC_ENCODING_ISO885915 35514
|
||||
#define IDC_ENCODING_MACINTOSH 35515
|
||||
#define IDC_ENCODING_ISO88592 35516
|
||||
#define IDC_ENCODING_WINDOWS1250 35517
|
||||
#define IDC_ENCODING_ISO88595 35518
|
||||
#define IDC_ENCODING_WINDOWS1251 35519
|
||||
#define IDC_ENCODING_KOI8R 35520
|
||||
#define IDC_ENCODING_KOI8U 35521
|
||||
#define IDC_ENCODING_ISO88597 35522
|
||||
#define IDC_ENCODING_WINDOWS1253 35523
|
||||
#define IDC_ENCODING_ISO88594 35524
|
||||
#define IDC_ENCODING_ISO885913 35525
|
||||
#define IDC_ENCODING_WINDOWS1257 35526
|
||||
#define IDC_ENCODING_ISO88593 35527
|
||||
#define IDC_ENCODING_ISO885910 35528
|
||||
#define IDC_ENCODING_ISO885914 35529
|
||||
#define IDC_ENCODING_ISO885916 35530
|
||||
#define IDC_ENCODING_WINDOWS1254 35531
|
||||
#define IDC_ENCODING_ISO88596 35532
|
||||
#define IDC_ENCODING_WINDOWS1256 35533
|
||||
#define IDC_ENCODING_ISO88598 35534
|
||||
#define IDC_ENCODING_WINDOWS1255 35535
|
||||
#define IDC_ENCODING_WINDOWS1258 35536
|
||||
#define IDC_ENCODING_ISO88598I 35537
|
||||
|
||||
// Clipboard commands
|
||||
#define IDC_CUT 36000
|
||||
#define IDC_COPY 36001
|
||||
#define IDC_COPY_URL 36002
|
||||
#define IDC_PASTE 36003
|
||||
#define IDC_EDIT_MENU 36004
|
||||
|
||||
// Find-in-page
|
||||
#define IDC_FIND 37000
|
||||
#define IDC_FIND_NEXT 37001
|
||||
#define IDC_FIND_PREVIOUS 37002
|
||||
|
||||
// Zoom
|
||||
#define IDC_ZOOM_MENU 38000
|
||||
#define IDC_ZOOM_PLUS 38001
|
||||
#define IDC_ZOOM_NORMAL 38002
|
||||
#define IDC_ZOOM_MINUS 38003
|
||||
#define IDC_ZOOM_PERCENT_DISPLAY 38004
|
||||
|
||||
// Focus various bits of UI
|
||||
#define IDC_FOCUS_TOOLBAR 39000
|
||||
#define IDC_FOCUS_LOCATION 39001
|
||||
#define IDC_FOCUS_SEARCH 39002
|
||||
#define IDC_FOCUS_MENU_BAR 39003
|
||||
#define IDC_FOCUS_NEXT_PANE 39004
|
||||
#define IDC_FOCUS_PREVIOUS_PANE 39005
|
||||
#define IDC_FOCUS_BOOKMARKS 39006
|
||||
#define IDC_FOCUS_CHROMEOS_STATUS 39007
|
||||
|
||||
// Show various bits of UI
|
||||
#define IDC_OPEN_FILE 40000
|
||||
#define IDC_CREATE_SHORTCUTS 40001
|
||||
#define IDC_DEVELOPER_MENU 40002
|
||||
#define IDC_DEV_TOOLS 40003
|
||||
#define IDC_DEV_TOOLS_CONSOLE 40004
|
||||
#define IDC_TASK_MANAGER 40005
|
||||
#define IDC_REPORT_BUG 40008
|
||||
#define IDC_SHOW_BOOKMARK_BAR 40009
|
||||
#define IDC_SHOW_HISTORY 40010
|
||||
#define IDC_SHOW_BOOKMARK_MANAGER 40011
|
||||
#define IDC_SHOW_DOWNLOADS 40012
|
||||
#define IDC_CLEAR_BROWSING_DATA 40013
|
||||
#define IDC_IMPORT_SETTINGS 40014
|
||||
#define IDC_OPTIONS 40015
|
||||
#define IDC_EDIT_SEARCH_ENGINES 40016
|
||||
#define IDC_VIEW_PASSWORDS 40017
|
||||
#define IDC_ABOUT 40018
|
||||
#define IDC_HELP_PAGE 40019
|
||||
#define IDC_SHOW_APP_MENU 40020
|
||||
#define IDC_MANAGE_EXTENSIONS 40022
|
||||
#define IDC_AUTOFILL_DEFAULT 40023
|
||||
#define IDC_DEV_TOOLS_INSPECT 40025
|
||||
#define IDC_UPGRADE_DIALOG 40026
|
||||
#define IDC_VIEW_INCOMPATIBILITIES 40027
|
||||
|
||||
// Spell-check
|
||||
// Insert any additional suggestions before _LAST; these have to be consecutive.
|
||||
#define IDC_SPELLCHECK_SUGGESTION_0 41000
|
||||
#define IDC_SPELLCHECK_SUGGESTION_1 41001
|
||||
#define IDC_SPELLCHECK_SUGGESTION_2 41002
|
||||
#define IDC_SPELLCHECK_SUGGESTION_3 41003
|
||||
#define IDC_SPELLCHECK_SUGGESTION_4 41004
|
||||
#define IDC_SPELLCHECK_SUGGESTION_LAST IDC_SPELLCHECK_SUGGESTION_4
|
||||
#define IDC_SPELLCHECK_MENU 41005
|
||||
// Language entries are inserted using autogenerated values between
|
||||
// [_FIRST, _LAST).
|
||||
#define IDC_SPELLCHECK_LANGUAGES_FIRST 41006
|
||||
#define IDC_SPELLCHECK_LANGUAGES_LAST 41106
|
||||
#define IDC_CHECK_SPELLING_OF_THIS_FIELD 41107
|
||||
#define IDC_SYNC_BOOKMARKS 41108
|
||||
#define IDC_SPELLPANEL_TOGGLE 41109
|
||||
#define IDC_SPELLCHECK_ADD_TO_DICTIONARY 41110
|
||||
|
||||
// Writing direction
|
||||
#define IDC_WRITING_DIRECTION_MENU 41120 // OSX only
|
||||
#define IDC_WRITING_DIRECTION_DEFAULT 41121 // OSX only
|
||||
#define IDC_WRITING_DIRECTION_LTR 41122 // OSX only
|
||||
#define IDC_WRITING_DIRECTION_RTL 41123 // OSX only
|
||||
|
||||
// Remoting
|
||||
#define IDC_REMOTING_SETUP 41140
|
||||
|
||||
// Translate
|
||||
#define IDC_TRANSLATE_OPTIONS_ALWAYS 42000
|
||||
#define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_LANG 42001
|
||||
#define IDC_TRANSLATE_OPTIONS_NEVER_TRANSLATE_SITE 42002
|
||||
#define IDC_TRANSLATE_REPORT_BAD_LANGUAGE_DETECTION 42003
|
||||
#define IDC_TRANSLATE_OPTIONS_ABOUT 42004
|
||||
#define IDC_TRANSLATE_ORIGINAL_LANGUAGE_BASE 42100
|
||||
#define IDC_TRANSLATE_TARGET_LANGUAGE_BASE 42400
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NO_MFC 1
|
||||
#pragma once
|
||||
#define _APS_NEXT_RESOURCE_VALUE 3001
|
||||
#define _APS_NEXT_COMMAND_VALUE 43000
|
||||
#define _APS_NEXT_CONTROL_VALUE 4017
|
||||
#define _APS_NEXT_SYMED_VALUE 1001
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// Identifiers for platform-specific items.
|
||||
// Placed in a common file to help insure they never collide.
|
||||
#define IDC_BOOKMARK_MENU 43000 // OSX only
|
||||
#define IDC_VIEW_MENU 44000 // OSX only
|
||||
#define IDC_SYSTEM_OPTIONS 45000 // ChromeOS only
|
||||
#define IDC_INTERNET_OPTIONS 45100 // ChromeOS only
|
||||
#define IDC_LANGUAGE_OPTIONS 45200 // ChromeOS only
|
||||
#define IDC_HISTORY_MENU 46000 // OSX only
|
||||
#define IDC_INPUT_METHODS_MENU 46300 // Linux only
|
||||
|
||||
// Custom context menu entries
|
||||
#define IDC_CONTENT_CONTEXT_CUSTOM_FIRST 47000
|
||||
#define IDC_CONTENT_CONTEXT_CUSTOM_LAST 48000
|
||||
|
||||
// Context menu items added by extensions.
|
||||
#define IDC_EXTENSIONS_CONTEXT_CUSTOM_FIRST 49000
|
||||
#define IDC_EXTENSIONS_CONTEXT_CUSTOM_LAST 50000
|
||||
|
||||
// Context menu items in the render view.
|
||||
// Link items.
|
||||
#define IDC_CONTENT_CONTEXT_OPENLINKNEWTAB 50100
|
||||
#define IDC_CONTENT_CONTEXT_OPENLINKNEWWINDOW 50101
|
||||
#define IDC_CONTENT_CONTEXT_OPENLINKOFFTHERECORD 50102
|
||||
#define IDC_CONTENT_CONTEXT_SAVELINKAS 50103
|
||||
#define IDC_CONTENT_CONTEXT_COPYLINKLOCATION 50104
|
||||
#define IDC_CONTENT_CONTEXT_COPYEMAILADDRESS 50105
|
||||
// Image items.
|
||||
#define IDC_CONTENT_CONTEXT_SAVEIMAGEAS 50110
|
||||
#define IDC_CONTENT_CONTEXT_COPYIMAGELOCATION 50111
|
||||
#define IDC_CONTENT_CONTEXT_COPYIMAGE 50112
|
||||
#define IDC_CONTENT_CONTEXT_OPENIMAGENEWTAB 50113
|
||||
// Audio/video items.
|
||||
#define IDC_CONTENT_CONTEXT_SAVEAVAS 50120
|
||||
#define IDC_CONTENT_CONTEXT_COPYAVLOCATION 50121
|
||||
#define IDC_CONTENT_CONTEXT_OPENAVNEWTAB 50122
|
||||
// Media items.
|
||||
#define IDC_CONTENT_CONTEXT_PLAYPAUSE 50130
|
||||
#define IDC_CONTENT_CONTEXT_MUTE 50131
|
||||
#define IDC_CONTENT_CONTEXT_LOOP 50132
|
||||
#define IDC_CONTENT_CONTEXT_CONTROLS 50133
|
||||
// Edit items.
|
||||
#define IDC_CONTENT_CONTEXT_COPY 50140
|
||||
#define IDC_CONTENT_CONTEXT_CUT 50141
|
||||
#define IDC_CONTENT_CONTEXT_PASTE 50142
|
||||
#define IDC_CONTENT_CONTEXT_DELETE 50143
|
||||
#define IDC_CONTENT_CONTEXT_UNDO 50144
|
||||
#define IDC_CONTENT_CONTEXT_REDO 50145
|
||||
#define IDC_CONTENT_CONTEXT_SELECTALL 50146
|
||||
// Other items.
|
||||
#define IDC_CONTENT_CONTEXT_TRANSLATE 50150
|
||||
#define IDC_CONTENT_CONTEXT_INSPECTELEMENT 50151
|
||||
#define IDC_CONTENT_CONTEXT_VIEWPAGEINFO 50152
|
||||
#define IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS 50153
|
||||
#define IDC_CONTENT_CONTEXT_LOOK_UP_IN_DICTIONARY 50154
|
||||
// Frame items.
|
||||
#define IDC_CONTENT_CONTEXT_RELOADFRAME 50160
|
||||
#define IDC_CONTENT_CONTEXT_OPENFRAMENEWTAB 50161
|
||||
#define IDC_CONTENT_CONTEXT_OPENFRAMENEWWINDOW 50162
|
||||
#define IDC_CONTENT_CONTEXT_OPENFRAMEOFFTHERECORD 50163
|
||||
#define IDC_CONTENT_CONTEXT_VIEWFRAMESOURCE 50164
|
||||
#define IDC_CONTENT_CONTEXT_VIEWFRAMEINFO 50165
|
||||
// Search items.
|
||||
#define IDC_CONTENT_CONTEXT_GOTOURL 50170
|
||||
#define IDC_CONTENT_CONTEXT_SEARCHWEBFOR 50171
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/string_number_conversions.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#import "base/worker_pool_mac.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_init.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/app_controller_mac.h"
|
||||
#include "testing/platform_test.h"
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "base/metrics/histogram.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_classifier.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit_view.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_match.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "base/string_util.h"
|
||||
#include "base/time.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_match.h"
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include "base/logging.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_match.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_popup_model.h"
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "base/ref_counted.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_accessibility.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_match.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_popup_model.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "base/values.h"
|
||||
#include "base/waitable_event.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/app_modal_dialog.h"
|
||||
#include "chrome/browser/app_modal_dialog_queue.h"
|
||||
#include "chrome/browser/autofill/autofill_manager.h"
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "base/scoped_ptr.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/values.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/automation/automation_provider.h"
|
||||
#include "chrome/browser/automation/automation_provider_json.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_model.h"
|
||||
|
@ -13,8 +13,7 @@
|
||||
#include "base/stringprintf.h"
|
||||
#include "base/time.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "base/stringprintf.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/app_modal_dialog.h"
|
||||
#include "chrome/browser/app_modal_dialog_queue.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "base/logging.h"
|
||||
#include "base/path_service.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/background_application_list_model.h"
|
||||
#include "chrome/browser/background_mode_manager.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "base/file_path.h"
|
||||
#include "base/sys_info.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/app_modal_dialog.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_init.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_model.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "base/sys_info.h"
|
||||
#include "base/test/test_file_util.h"
|
||||
#include "base/values.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/platform_util.h"
|
||||
#include "chrome/common/chrome_switches.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/string_tokenizer.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "grit/generated_resources.h"
|
||||
#include "unicode/ucnv.h"
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "app/l10n_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "base/values.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#include "chrome/browser/chromeos/cros/cros_library.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "base/values.h"
|
||||
#include "base/string_number_conversions.h"
|
||||
#include "base/string_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_thread.h"
|
||||
#include "chrome/browser/chromeos/status/network_menu.h"
|
||||
#include "chrome/browser/chromeos/views/domui_menu_widget.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "base/values.h"
|
||||
#include "base/weak_ptr.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
#include "chrome/browser/chromeos/views/domui_menu_widget.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include "app/menus/simple_menu_model.h"
|
||||
#include "base/command_line.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/chromeos/frame/panel_browser_view.h"
|
||||
#include "chrome/browser/chromeos/status/input_method_menu_button.h"
|
||||
#include "chrome/browser/chromeos/status/network_menu_button.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
#include "app/l10n_util.h"
|
||||
#include "app/resource_bundle.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/chromeos/status/status_area_host.h"
|
||||
#include "gfx/canvas.h"
|
||||
#include "grit/generated_resources.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "app/menus/accelerator_cocoa.h"
|
||||
|
||||
// This class maintains a map of command_ids to AcceleratorCocoa objects (see
|
||||
// chrome/app/chrome_dll_resource.h). Currently, this only lists the commands
|
||||
// chrome/app/chrome_command_ids.h). Currently, this only lists the commands
|
||||
// that are used in the Wrench menu.
|
||||
//
|
||||
// It is recommended that this class be used as a singleton so that the key map
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
|
||||
namespace {
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/menus/accelerator_cocoa.h"
|
||||
#include "base/singleton.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/accelerators_cocoa.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
#include "testing/gtest_mac.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "base/string16.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_model.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/cocoa/bookmarks/bookmark_menu_bridge.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "app/text_elider.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h" // IDC_BOOKMARK_MENU
|
||||
#include "chrome/app/chrome_command_ids.h" // IDC_BOOKMARK_MENU
|
||||
#import "chrome/browser/app_controller_mac.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_model.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "base/logging.h"
|
||||
#include "base/message_loop.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_utils.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
|
@ -217,7 +217,7 @@ class TabContents;
|
||||
|
||||
// Executes the command in the context of the current browser.
|
||||
// |command| is an integer value containing one of the constants defined in the
|
||||
// "chrome/app/chrome_dll_resource.h" file.
|
||||
// "chrome/app/chrome_command_ids.h" file.
|
||||
- (void)executeCommand:(int)command;
|
||||
|
||||
// Delegate method for the status bubble to query its base frame.
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include "base/nsimage_cache_mac.h"
|
||||
#import "base/scoped_nsobject.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h" // IDC_*
|
||||
#include "chrome/app/chrome_command_ids.h" // IDC_*
|
||||
#include "chrome/browser/bookmarks/bookmark_editor.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include "app/l10n_util_mac.h"
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "base/scoped_ptr.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#include "chrome/browser/browser_window.h"
|
||||
#include "chrome/browser/cocoa/browser_test_helper.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "base/debug/debugger.h"
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/chrome_event_processing_window.h"
|
||||
#import "chrome/browser/cocoa/browser_window_controller.h"
|
||||
#import "chrome/browser/cocoa/browser_frame_view.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
#include "base/string16.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/encoding_menu_controller.h"
|
||||
#include "chrome/browser/profile.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "base/debug/debugger.h"
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/browser_window_controller.h"
|
||||
#import "chrome/browser/cocoa/browser_frame_view.h"
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "base/string_number_conversions.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h" // IDC_HISTORY_MENU
|
||||
#include "chrome/app/chrome_command_ids.h" // IDC_HISTORY_MENU
|
||||
#import "chrome/browser/app_controller_mac.h"
|
||||
#import "chrome/browser/cocoa/history_menu_cocoa_controller.h"
|
||||
#include "chrome/browser/history/page_usage_data.h"
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "base/string_util.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/cancelable_request.h"
|
||||
#include "chrome/browser/cocoa/browser_test_helper.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#import "chrome/browser/cocoa/history_menu_cocoa_controller.h"
|
||||
|
||||
#include "base/scoped_vector.h"
|
||||
#include "chrome/app/chrome_dll_resource.h" // IDC_HISTORY_MENU
|
||||
#include "chrome/app/chrome_command_ids.h" // IDC_HISTORY_MENU
|
||||
#import "chrome/browser/app_controller_mac.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include "base/scoped_ptr.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/cocoa/browser_test_helper.h"
|
||||
#include "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "base/string_util.h"
|
||||
#include "grit/generated_resources.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h" // IDC_*
|
||||
#include "chrome/app/chrome_command_ids.h" // IDC_*
|
||||
#include "chrome/browser/browser_list.h"
|
||||
#import "chrome/browser/cocoa/browser_window_controller.h"
|
||||
#import "chrome/browser/cocoa/location_bar/autocomplete_text_field.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "base/scoped_ptr.h"
|
||||
#include "base/string_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h" // IDC_*
|
||||
#include "chrome/app/chrome_command_ids.h" // IDC_*
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#import "chrome/browser/cocoa/location_bar/autocomplete_text_field_unittest_helper.h"
|
||||
#import "chrome/browser/cocoa/test_event_utils.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "base/string_util.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/alternate_nav_url_fetcher.h"
|
||||
#import "chrome/browser/app_controller_mac.h"
|
||||
#import "chrome/browser/autocomplete/autocomplete_edit_view_mac.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#import "chrome/browser/cocoa/location_bar/star_decoration.h"
|
||||
|
||||
#include "app/l10n_util_mac.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/autocomplete/autocomplete_edit_view_mac.h"
|
||||
#include "chrome/browser/command_updater.h"
|
||||
#include "grit/generated_resources.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "app/l10n_util.h"
|
||||
#include "app/l10n_util_mac.h"
|
||||
#include "base/nsimage_cache_mac.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/gradient_button_cell.h"
|
||||
#import "chrome/browser/cocoa/view_id_util.h"
|
||||
#include "grit/generated_resources.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#import "chrome/browser/cocoa/reload_button.h"
|
||||
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#import "chrome/browser/cocoa/test_event_utils.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/mac_util.h"
|
||||
#include "base/nsimage_cache_mac.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_navigator.h"
|
||||
#include "chrome/browser/find_bar.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "base/mac/scoped_cftyperef.h"
|
||||
#include "base/scoped_callback_factory.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#import "chrome/browser/cocoa/bookmarks/bookmark_bar_constants.h"
|
||||
#import "chrome/browser/cocoa/browser_window_controller.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/nsimage_cache_mac.h"
|
||||
#include "base/singleton.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit_view.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_window.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
#import "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/cocoa/browser_test_helper.h"
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#import "chrome/browser/cocoa/gradient_button_cell.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "base/mac_util.h"
|
||||
#include "base/metrics/histogram.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/hover_close_button.h"
|
||||
#include "chrome/browser/cocoa/infobar.h"
|
||||
#import "chrome/browser/cocoa/infobar_controller.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#import "base/scoped_nsobject.h"
|
||||
#import "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#import "chrome/app/chrome_dll_resource.h" // For translate menu command ids.
|
||||
#import "chrome/app/chrome_command_ids.h" // For translate menu command ids.
|
||||
#import "chrome/browser/cocoa/browser_test_helper.h"
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#import "chrome/browser/cocoa/infobar.h"
|
||||
|
@ -3,7 +3,7 @@
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#import "chrome/browser/cocoa/wrench_menu_button_cell.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "app/l10n_util.h"
|
||||
#include "app/menus/menu_model.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_window.h"
|
||||
#import "chrome/browser/cocoa/menu_tracked_root_view.h"
|
||||
|
@ -3,7 +3,7 @@
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/cocoa/browser_test_helper.h"
|
||||
#import "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#import "chrome/browser/cocoa/toolbar_controller.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/net/url_fixer_upper.h"
|
||||
#include "chrome/common/chrome_switches.h"
|
||||
#include "chrome/common/url_constants.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "chrome/test/ui/ui_test.h"
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/common/url_constants.h"
|
||||
#include "chrome/test/automation/browser_proxy.h"
|
||||
#include "chrome/test/automation/tab_proxy.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "chrome/test/ui/ui_test.h"
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_thread.h"
|
||||
#include "chrome/browser/dom_ui/new_tab_ui.h"
|
||||
#include "chrome/browser/prefs/pref_value_store.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include "base/command_line.h"
|
||||
#include "base/string16.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/common/chrome_switches.h"
|
||||
#include "chrome/common/url_constants.h"
|
||||
#include "chrome/test/automation/browser_proxy.h"
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "base/platform_thread.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/test/test_file_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/net/url_request_mock_http_job.h"
|
||||
#include "chrome/browser/net/url_request_slow_download_job.h"
|
||||
#include "chrome/common/chrome_constants.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include "base/file_util.h"
|
||||
#include "base/path_service.h"
|
||||
#include "base/scoped_temp_dir.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_window.h"
|
||||
#include "chrome/browser/net/url_request_mock_http_job.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "base/platform_thread.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/test/test_file_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/net/url_request_mock_http_job.h"
|
||||
#include "chrome/browser/download/save_package.h"
|
||||
#include "chrome/common/chrome_paths.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "app/l10n_util.h"
|
||||
#include "base/i18n/rtl.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#include "chrome/browser/character_encoding.h"
|
||||
#include "chrome/browser/prefs/pref_service.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <string>
|
||||
|
||||
#include "base/basictypes.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/prefs/pref_service.h"
|
||||
#include "chrome/browser/profile.h"
|
||||
#include "chrome/common/pref_names.h"
|
||||
|
@ -3,7 +3,7 @@
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "app/menus/menu_model.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
#include "chrome/browser/extensions/extension_browsertest.h"
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "base/i18n/rtl.h"
|
||||
#include "base/logging.h"
|
||||
#include "base/win_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/automation/automation_provider.h"
|
||||
#include "chrome/browser/automation/automation_extension_function.h"
|
||||
#include "chrome/browser/browser_window.h"
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
#include "base/basictypes.h"
|
||||
#include "base/logging.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
|
||||
// Basically, there are two kinds of keyboard shortcuts: Ones that should work
|
||||
// only if the tab contents is focused (BrowserKeyboardShortcut), and ones that
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
#include "chrome/browser/global_keyboard_shortcuts_mac.h"
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
|
||||
TEST(GlobalKeyboardShortcuts, ShortcutsToWindowCommand) {
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
#include <X11/XF86keysym.h>
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
|
||||
namespace {
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
#include "app/l10n_util.h"
|
||||
#include "base/message_loop.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/back_forward_menu_model.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/gtk/gtk_theme_provider.h"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "base/string_piece.h"
|
||||
#include "base/string_tokenizer.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/encoding_menu_controller.h"
|
||||
#include "chrome/browser/gtk/accelerators_gtk.h"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "base/logging.h"
|
||||
#include "base/path_service.h"
|
||||
#include "base/singleton.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/encoding_menu_controller.h"
|
||||
#include "chrome/browser/gtk/accelerators_gtk.h"
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "base/string_util.h"
|
||||
#include "base/time.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/app_modal_dialog_queue.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit_view.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_utils.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/logging.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/accessibility_events.h"
|
||||
#include "chrome/browser/alternate_nav_url_fetcher.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit_view_gtk.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/message_loop.h"
|
||||
#include "base/stl_util-inl.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/gtk/gtk_custom_menu.h"
|
||||
#include "chrome/browser/gtk/gtk_custom_menu_item.h"
|
||||
#include "chrome/browser/gtk/gtk_util.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/l10n_util.h"
|
||||
#include "base/logging.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/gtk/gtk_chrome_button.h"
|
||||
#include "chrome/browser/gtk/gtk_theme_provider.h"
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "app/menus/accelerator_gtk.h"
|
||||
#include "base/singleton.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/gtk/accelerators_gtk.h"
|
||||
#include "chrome/browser/gtk/menu_gtk.h"
|
||||
#include "chrome/browser/tab_menu_model.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/string_util.h"
|
||||
#include "base/third_party/icu/icu_utf.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/gtk/gtk_util.h"
|
||||
#if !defined(TOOLKIT_VIEWS)
|
||||
#include "chrome/browser/gtk/menu_gtk.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/net/url_fixer_upper.h"
|
||||
#include "chrome/common/chrome_switches.h"
|
||||
#include "chrome/common/url_constants.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include "base/file_path.h"
|
||||
#include "base/scoped_ptr.h"
|
||||
#include "base/string_number_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/defaults.h"
|
||||
#include "chrome/common/chrome_paths.h"
|
||||
#include "chrome/common/chrome_switches.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "base/stringprintf.h"
|
||||
#include "base/time.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/browser_navigator.h"
|
||||
#include "chrome/browser/prefs/pref_service.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
#include "app/l10n_util_mac.h"
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/cocoa/cocoa_test_helper.h"
|
||||
#include "grit/generated_resources.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "base/stl_util-inl.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/time.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_classifier.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_edit.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_match.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "base/string_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/renderer_host/render_widget_host_view_gtk.h"
|
||||
#include "chrome/browser/tab_contents/tab_contents.h"
|
||||
#include "webkit/glue/context_menu.h"
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "base/message_loop.h"
|
||||
#include "base/scoped_nsobject.h"
|
||||
#include "base/sys_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#import "chrome/browser/cocoa/menu_controller.h"
|
||||
#include "grit/generated_resources.h"
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/common/url_constants.h"
|
||||
#include "chrome/test/automation/browser_proxy.h"
|
||||
#include "chrome/test/automation/tab_proxy.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include "base/basictypes.h"
|
||||
#include "base/command_line.h"
|
||||
#include "base/file_path.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/common/chrome_paths.h"
|
||||
#include "chrome/common/chrome_switches.h"
|
||||
#include "chrome/common/pref_names.h"
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "base/stl_util-inl.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/thread.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_child_process_host.h"
|
||||
#include "chrome/browser/browser_list.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/l10n_util.h"
|
||||
#include "base/metrics/histogram.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#include "chrome/browser/profile.h"
|
||||
#include "chrome/browser/tab_contents/tab_contents.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include "chrome/browser/renderer_host/test/test_render_view_host.h"
|
||||
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/prefs/pref_service.h"
|
||||
#include "chrome/browser/prefs/pref_change_registrar.h"
|
||||
#include "chrome/browser/renderer_host/mock_render_process_host.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "base/thread_restrictions.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "gfx/point.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/autofill/autofill_manager.h"
|
||||
#if defined(OS_WIN)
|
||||
#include "chrome/browser/autofill/autofill_ie_toolbar_import_win.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include "base/thread.h"
|
||||
#include "base/time.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#include "chrome/common/chrome_constants.h"
|
||||
#include "chrome/common/devtools_messages.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/keyboard_codes.h"
|
||||
#include "base/basictypes.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
|
||||
namespace browser {
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "app/resource_bundle.h"
|
||||
#include "base/string16.h"
|
||||
#include "base/string_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_editor.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_model.h"
|
||||
#include "chrome/browser/bookmarks/bookmark_utils.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/resource_bundle.h"
|
||||
#include "app/win_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser_process.h"
|
||||
#include "chrome/browser/prefs/pref_service.h"
|
||||
#include "chrome/browser/profile.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/test/automation/browser_proxy.h"
|
||||
#include "chrome/test/automation/tab_proxy.h"
|
||||
#include "chrome/test/ui/ui_test.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "base/i18n/rtl.h"
|
||||
#include "base/string_number_conversions.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/browser/app_modal_dialog_queue.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_popup_model.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/resource_bundle.h"
|
||||
#include "app/theme_provider.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/themes/browser_theme_provider.h"
|
||||
#include "chrome/browser/views/frame/browser_view.h"
|
||||
#include "chrome/browser/views/tabs/side_tab_strip.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "app/keyboard_codes.h"
|
||||
#include "app/l10n_util.h"
|
||||
#include "app/resource_bundle.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "gfx/canvas_skia.h"
|
||||
#include "grit/generated_resources.h"
|
||||
#include "views/screen.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include "app/l10n_util.h"
|
||||
#include "app/resource_bundle.h"
|
||||
#include "base/logging.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/profile.h"
|
||||
#include "chrome/browser/search_engines/template_url_model.h"
|
||||
#include "gfx/canvas.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "app/theme_provider.h"
|
||||
#include "base/stl_util-inl.h"
|
||||
#include "base/utf_string_conversions.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/alternate_nav_url_fetcher.h"
|
||||
#include "chrome/browser/autocomplete/autocomplete_popup_model.h"
|
||||
#include "chrome/browser/defaults.h"
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
#include "app/l10n_util.h"
|
||||
#include "app/resource_bundle.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/command_updater.h"
|
||||
#include "chrome/browser/view_ids.h"
|
||||
#include "chrome/browser/views/browser_dialogs.h"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include "chrome/browser/views/reload_button.h"
|
||||
|
||||
#include "app/l10n_util.h"
|
||||
#include "chrome/app/chrome_dll_resource.h"
|
||||
#include "chrome/app/chrome_command_ids.h"
|
||||
#include "chrome/browser/browser.h"
|
||||
#include "chrome/browser/views/event_utils.h"
|
||||
#include "chrome/browser/views/location_bar/location_bar_view.h"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user