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

Side by Side Diff: chrome/browser/ui/toolbar/wrench_menu_model.cc

Issue 10702029: Move tab functions off Browser into browser_tabstrip and browser_tabrestore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 #include "chrome/browser/ui/toolbar/wrench_menu_model.h" 5 #include "chrome/browser/ui/toolbar/wrench_menu_model.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/i18n/number_formatting.h" 11 #include "base/i18n/number_formatting.h"
12 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "chrome/app/chrome_command_ids.h" 15 #include "chrome/app/chrome_command_ids.h"
16 #include "chrome/browser/browser_process.h" 16 #include "chrome/browser/browser_process.h"
17 #include "chrome/browser/defaults.h" 17 #include "chrome/browser/defaults.h"
18 #include "chrome/browser/prefs/pref_service.h" 18 #include "chrome/browser/prefs/pref_service.h"
19 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/profiles/profile_manager.h" 20 #include "chrome/browser/profiles/profile_manager.h"
21 #include "chrome/browser/signin/signin_manager.h" 21 #include "chrome/browser/signin/signin_manager.h"
22 #include "chrome/browser/signin/signin_manager_factory.h" 22 #include "chrome/browser/signin/signin_manager_factory.h"
23 #include "chrome/browser/sync/profile_sync_service.h" 23 #include "chrome/browser/sync/profile_sync_service.h"
24 #include "chrome/browser/sync/profile_sync_service_factory.h" 24 #include "chrome/browser/sync/profile_sync_service_factory.h"
25 #include "chrome/browser/sync/sync_global_error.h" 25 #include "chrome/browser/sync/sync_global_error.h"
26 #include "chrome/browser/sync/sync_ui_util.h" 26 #include "chrome/browser/sync/sync_ui_util.h"
27 #include "chrome/browser/task_manager/task_manager.h" 27 #include "chrome/browser/task_manager/task_manager.h"
28 #include "chrome/browser/ui/browser.h" 28 #include "chrome/browser/ui/browser.h"
29 #include "chrome/browser/ui/browser_commands.h" 29 #include "chrome/browser/ui/browser_commands.h"
30 #include "chrome/browser/ui/browser_tabstrip.h"
30 #include "chrome/browser/ui/browser_window.h" 31 #include "chrome/browser/ui/browser_window.h"
31 #include "chrome/browser/ui/global_error/global_error.h" 32 #include "chrome/browser/ui/global_error/global_error.h"
32 #include "chrome/browser/ui/global_error/global_error_service.h" 33 #include "chrome/browser/ui/global_error/global_error_service.h"
33 #include "chrome/browser/ui/global_error/global_error_service_factory.h" 34 #include "chrome/browser/ui/global_error/global_error_service_factory.h"
34 #include "chrome/browser/ui/tabs/tab_strip_model.h" 35 #include "chrome/browser/ui/tabs/tab_strip_model.h"
35 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h" 36 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h"
36 #include "chrome/browser/upgrade_detector.h" 37 #include "chrome/browser/upgrade_detector.h"
37 #include "chrome/common/chrome_paths.h" 38 #include "chrome/common/chrome_paths.h"
38 #include "chrome/common/chrome_switches.h" 39 #include "chrome/common/chrome_switches.h"
39 #include "chrome/common/pref_names.h" 40 #include "chrome/common/pref_names.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // Use the id of the first radio command as the id of the group. 104 // Use the id of the first radio command as the id of the group.
104 if (group_id <= 0) 105 if (group_id <= 0)
105 group_id = id; 106 group_id = id;
106 AddRadioItem(id, label, group_id); 107 AddRadioItem(id, label, group_id);
107 } 108 }
108 } 109 }
109 } 110 }
110 } 111 }
111 112
112 bool EncodingMenuModel::IsCommandIdChecked(int command_id) const { 113 bool EncodingMenuModel::IsCommandIdChecked(int command_id) const {
113 WebContents* current_tab = browser_->GetActiveWebContents(); 114 WebContents* current_tab = chrome::GetActiveWebContents(browser_);
114 if (!current_tab) 115 if (!current_tab)
115 return false; 116 return false;
116 EncodingMenuController controller; 117 EncodingMenuController controller;
117 return controller.IsItemChecked(browser_->profile(), 118 return controller.IsItemChecked(browser_->profile(),
118 current_tab->GetEncoding(), command_id); 119 current_tab->GetEncoding(), command_id);
119 } 120 }
120 121
121 bool EncodingMenuModel::IsCommandIdEnabled(int command_id) const { 122 bool EncodingMenuModel::IsCommandIdEnabled(int command_id) const {
122 bool enabled = chrome::IsCommandEnabled(browser_, command_id); 123 bool enabled = chrome::IsCommandEnabled(browser_, command_id);
123 // Special handling for the contents of the Encoding submenu. On Mac OS, 124 // Special handling for the contents of the Encoding submenu. On Mac OS,
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 AddItemWithStringId(IDC_FULLSCREEN, IDS_FULLSCREEN); 606 AddItemWithStringId(IDC_FULLSCREEN, IDS_FULLSCREEN);
606 #endif 607 #endif
607 608
608 AddSeparator(); 609 AddSeparator();
609 } 610 }
610 611
611 void WrenchMenuModel::UpdateZoomControls() { 612 void WrenchMenuModel::UpdateZoomControls() {
612 bool enable_increment = false; 613 bool enable_increment = false;
613 bool enable_decrement = false; 614 bool enable_decrement = false;
614 int zoom_percent = 100; 615 int zoom_percent = 100;
615 if (browser_->GetActiveWebContents()) { 616 if (chrome::GetActiveWebContents(browser_)) {
616 zoom_percent = browser_->GetActiveWebContents()->GetZoomPercent( 617 zoom_percent = chrome::GetActiveWebContents(browser_)->GetZoomPercent(
617 &enable_increment, &enable_decrement); 618 &enable_increment, &enable_decrement);
618 } 619 }
619 zoom_label_ = l10n_util::GetStringFUTF16( 620 zoom_label_ = l10n_util::GetStringFUTF16(
620 IDS_ZOOM_PERCENT, base::IntToString16(zoom_percent)); 621 IDS_ZOOM_PERCENT, base::IntToString16(zoom_percent));
621 } 622 }
622 623
623 string16 WrenchMenuModel::GetSyncMenuLabel() const { 624 string16 WrenchMenuModel::GetSyncMenuLabel() const {
624 Profile* profile = browser_->profile()->GetOriginalProfile(); 625 Profile* profile = browser_->profile()->GetOriginalProfile();
625 return sync_ui_util::GetSyncMenuLabel( 626 return sync_ui_util::GetSyncMenuLabel(
626 ProfileSyncServiceFactory::GetForProfile(profile), 627 ProfileSyncServiceFactory::GetForProfile(profile),
627 *SigninManagerFactory::GetForProfile(profile)); 628 *SigninManagerFactory::GetForProfile(profile));
628 } 629 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/toolbar/toolbar_model_unittest.cc ('k') | chrome/browser/ui/toolbar/wrench_menu_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698