OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 #include "chrome/browser/browser.h" | 5 #include "chrome/browser/browser.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/idle_timer.h" | 9 #include "base/idle_timer.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
12 #include "base/thread.h" | 12 #include "base/thread.h" |
13 #include "chrome/app/chrome_dll_resource.h" | 13 #include "chrome/app/chrome_dll_resource.h" |
14 #include "chrome/browser/bookmarks/bookmark_model.h" | 14 #include "chrome/browser/bookmarks/bookmark_model.h" |
15 #include "chrome/browser/browser_list.h" | 15 #include "chrome/browser/browser_list.h" |
16 #include "chrome/browser/browser_shutdown.h" | 16 #include "chrome/browser/browser_shutdown.h" |
17 #include "chrome/browser/browser_window.h" | 17 #include "chrome/browser/browser_window.h" |
18 #include "chrome/browser/character_encoding.h" | 18 #include "chrome/browser/character_encoding.h" |
| 19 #include "chrome/browser/debugger/debugger_host.h" |
19 #include "chrome/browser/debugger/devtools_manager.h" | 20 #include "chrome/browser/debugger/devtools_manager.h" |
20 #include "chrome/browser/download/download_manager.h" | 21 #include "chrome/browser/download/download_manager.h" |
21 #include "chrome/browser/find_bar.h" | 22 #include "chrome/browser/find_bar.h" |
22 #include "chrome/browser/find_bar_controller.h" | 23 #include "chrome/browser/find_bar_controller.h" |
23 #include "chrome/browser/location_bar.h" | 24 #include "chrome/browser/location_bar.h" |
24 #include "chrome/browser/metrics/user_metrics.h" | 25 #include "chrome/browser/metrics/user_metrics.h" |
25 #include "chrome/browser/net/url_fixer_upper.h" | 26 #include "chrome/browser/net/url_fixer_upper.h" |
26 #include "chrome/browser/profile.h" | 27 #include "chrome/browser/profile.h" |
27 #include "chrome/browser/sessions/session_service.h" | 28 #include "chrome/browser/sessions/session_service.h" |
28 #include "chrome/browser/sessions/session_types.h" | 29 #include "chrome/browser/sessions/session_types.h" |
(...skipping 1009 matching lines...) Loading... |
1038 UserMetrics::RecordAction(L"CreateShortcut", profile_); | 1039 UserMetrics::RecordAction(L"CreateShortcut", profile_); |
1039 GetSelectedTabContents()->CreateShortcut(); | 1040 GetSelectedTabContents()->CreateShortcut(); |
1040 } | 1041 } |
1041 | 1042 |
1042 void Browser::OpenDebuggerWindow() { | 1043 void Browser::OpenDebuggerWindow() { |
1043 #ifndef CHROME_DEBUGGER_DISABLED | 1044 #ifndef CHROME_DEBUGGER_DISABLED |
1044 UserMetrics::RecordAction(L"Debugger", profile_); | 1045 UserMetrics::RecordAction(L"Debugger", profile_); |
1045 // Only one debugger instance can exist at a time right now. | 1046 // Only one debugger instance can exist at a time right now. |
1046 // TODO(erikkay): need an alert, dialog, something | 1047 // TODO(erikkay): need an alert, dialog, something |
1047 // or better yet, fix the one instance limitation | 1048 // or better yet, fix the one instance limitation |
1048 if (!DebuggerWindow::DoesDebuggerExist()) | 1049 DebuggerHost* host = DebuggerWindow::GetAnyExistingDebugger(); |
1049 debugger_window_ = new DebuggerWindow(); | 1050 if (host) { |
| 1051 host->ShowWindow(); |
| 1052 return; |
| 1053 } |
| 1054 debugger_window_ = new DebuggerWindow(); |
1050 debugger_window_->Show(GetSelectedTabContents()); | 1055 debugger_window_->Show(GetSelectedTabContents()); |
1051 #endif | 1056 #endif |
1052 } | 1057 } |
1053 | 1058 |
1054 void Browser::OpenJavaScriptConsole() { | 1059 void Browser::OpenJavaScriptConsole() { |
1055 UserMetrics::RecordAction(L"ShowJSConsole", profile_); | 1060 UserMetrics::RecordAction(L"ShowJSConsole", profile_); |
1056 if (CommandLine::ForCurrentProcess()->HasSwitch( | 1061 if (CommandLine::ForCurrentProcess()->HasSwitch( |
1057 switches::kEnableOutOfProcessDevTools)) { | 1062 switches::kEnableOutOfProcessDevTools)) { |
1058 DevToolsManager* manager = g_browser_process->devtools_manager(); | 1063 DevToolsManager* manager = g_browser_process->devtools_manager(); |
1059 manager->OpenDevToolsWindow(GetSelectedTabContents()); | 1064 manager->OpenDevToolsWindow(GetSelectedTabContents()); |
(...skipping 1048 matching lines...) Loading... |
2108 | 2113 |
2109 // Clipboard commands | 2114 // Clipboard commands |
2110 command_updater_.UpdateCommandEnabled(IDC_CUT, true); | 2115 command_updater_.UpdateCommandEnabled(IDC_CUT, true); |
2111 command_updater_.UpdateCommandEnabled(IDC_COPY, true); | 2116 command_updater_.UpdateCommandEnabled(IDC_COPY, true); |
2112 command_updater_.UpdateCommandEnabled(IDC_COPY_URL, true); | 2117 command_updater_.UpdateCommandEnabled(IDC_COPY_URL, true); |
2113 command_updater_.UpdateCommandEnabled(IDC_PASTE, true); | 2118 command_updater_.UpdateCommandEnabled(IDC_PASTE, true); |
2114 | 2119 |
2115 // Show various bits of UI | 2120 // Show various bits of UI |
2116 command_updater_.UpdateCommandEnabled(IDC_OPEN_FILE, true); | 2121 command_updater_.UpdateCommandEnabled(IDC_OPEN_FILE, true); |
2117 command_updater_.UpdateCommandEnabled(IDC_CREATE_SHORTCUTS, false); | 2122 command_updater_.UpdateCommandEnabled(IDC_CREATE_SHORTCUTS, false); |
| 2123 #if defined(OS_WIN) |
| 2124 // Command line debugger conflicts with the new oop one. |
| 2125 bool oop_devtools = CommandLine::ForCurrentProcess()->HasSwitch( |
| 2126 switches::kEnableOutOfProcessDevTools); |
| 2127 command_updater_.UpdateCommandEnabled(IDC_DEBUGGER, |
| 2128 // The debugger doesn't work in single process mode. |
| 2129 !oop_devtools && !RenderProcessHost::run_renderer_in_process()); |
| 2130 #endif |
2118 command_updater_.UpdateCommandEnabled(IDC_TASK_MANAGER, true); | 2131 command_updater_.UpdateCommandEnabled(IDC_TASK_MANAGER, true); |
2119 command_updater_.UpdateCommandEnabled(IDC_SELECT_PROFILE, true); | 2132 command_updater_.UpdateCommandEnabled(IDC_SELECT_PROFILE, true); |
2120 command_updater_.UpdateCommandEnabled(IDC_SHOW_HISTORY, true); | 2133 command_updater_.UpdateCommandEnabled(IDC_SHOW_HISTORY, true); |
2121 command_updater_.UpdateCommandEnabled(IDC_SHOW_BOOKMARK_MANAGER, true); | 2134 command_updater_.UpdateCommandEnabled(IDC_SHOW_BOOKMARK_MANAGER, true); |
2122 command_updater_.UpdateCommandEnabled(IDC_SHOW_DOWNLOADS, true); | 2135 command_updater_.UpdateCommandEnabled(IDC_SHOW_DOWNLOADS, true); |
2123 command_updater_.UpdateCommandEnabled(IDC_HELP_PAGE, true); | 2136 command_updater_.UpdateCommandEnabled(IDC_HELP_PAGE, true); |
2124 | 2137 |
2125 // Initialize other commands based on the window type. | 2138 // Initialize other commands based on the window type. |
2126 { | 2139 { |
2127 bool normal_window = type() == TYPE_NORMAL; | 2140 bool normal_window = type() == TYPE_NORMAL; |
(...skipping 11 matching lines...) Loading... |
2139 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_3, normal_window); | 2152 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_3, normal_window); |
2140 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_4, normal_window); | 2153 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_4, normal_window); |
2141 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_5, normal_window); | 2154 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_5, normal_window); |
2142 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_6, normal_window); | 2155 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_6, normal_window); |
2143 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_7, normal_window); | 2156 command_updater_.UpdateCommandEnabled(IDC_SELECT_TAB_7, normal_window); |
2144 command_updater_.UpdateCommandEnabled(IDC_SELECT_LAST_TAB, normal_window); | 2157 command_updater_.UpdateCommandEnabled(IDC_SELECT_LAST_TAB, normal_window); |
2145 command_updater_.UpdateCommandEnabled(IDC_RESTORE_TAB, | 2158 command_updater_.UpdateCommandEnabled(IDC_RESTORE_TAB, |
2146 normal_window && !profile_->IsOffTheRecord()); | 2159 normal_window && !profile_->IsOffTheRecord()); |
2147 | 2160 |
2148 // Show various bits of UI | 2161 // Show various bits of UI |
2149 #if defined(OS_WIN) | |
2150 // Command line debugger conflicts with the new oop one. | |
2151 bool oop_devtools = CommandLine::ForCurrentProcess()->HasSwitch( | |
2152 switches::kEnableOutOfProcessDevTools); | |
2153 command_updater_.UpdateCommandEnabled(IDC_DEBUGGER, | |
2154 // The debugger doesn't work in single process mode. | |
2155 !oop_devtools && normal_window && | |
2156 !RenderProcessHost::run_renderer_in_process()); | |
2157 #endif | |
2158 command_updater_.UpdateCommandEnabled(IDC_CLEAR_BROWSING_DATA, | 2162 command_updater_.UpdateCommandEnabled(IDC_CLEAR_BROWSING_DATA, |
2159 normal_window); | 2163 normal_window); |
2160 } | 2164 } |
2161 | 2165 |
2162 // Initialize other commands whose state changes based on fullscreen mode. | 2166 // Initialize other commands whose state changes based on fullscreen mode. |
2163 UpdateCommandsForFullscreenMode(false); | 2167 UpdateCommandsForFullscreenMode(false); |
2164 } | 2168 } |
2165 | 2169 |
2166 void Browser::UpdateCommandsForTabState() { | 2170 void Browser::UpdateCommandsForTabState() { |
2167 TabContents* current_tab = GetSelectedTabContents(); | 2171 TabContents* current_tab = GetSelectedTabContents(); |
(...skipping 454 matching lines...) Loading... |
2622 | 2626 |
2623 // We need to register the window position pref. | 2627 // We need to register the window position pref. |
2624 std::wstring window_pref(prefs::kBrowserWindowPlacement); | 2628 std::wstring window_pref(prefs::kBrowserWindowPlacement); |
2625 window_pref.append(L"_"); | 2629 window_pref.append(L"_"); |
2626 window_pref.append(app_name); | 2630 window_pref.append(app_name); |
2627 PrefService* prefs = g_browser_process->local_state(); | 2631 PrefService* prefs = g_browser_process->local_state(); |
2628 DCHECK(prefs); | 2632 DCHECK(prefs); |
2629 | 2633 |
2630 prefs->RegisterDictionaryPref(window_pref.c_str()); | 2634 prefs->RegisterDictionaryPref(window_pref.c_str()); |
2631 } | 2635 } |
OLD | NEW |