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

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

Issue 9959038: Removed ProfileSyncService::UIShouldDepictAuthInProgress (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT. Created 8 years, 8 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"
22 #include "chrome/browser/signin/signin_manager_factory.h"
21 #include "chrome/browser/sync/profile_sync_service.h" 23 #include "chrome/browser/sync/profile_sync_service.h"
22 #include "chrome/browser/sync/profile_sync_service_factory.h" 24 #include "chrome/browser/sync/profile_sync_service_factory.h"
23 #include "chrome/browser/sync/sync_global_error.h" 25 #include "chrome/browser/sync/sync_global_error.h"
24 #include "chrome/browser/sync/sync_ui_util.h" 26 #include "chrome/browser/sync/sync_ui_util.h"
25 #include "chrome/browser/tabs/tab_strip_model.h" 27 #include "chrome/browser/tabs/tab_strip_model.h"
26 #include "chrome/browser/task_manager/task_manager.h" 28 #include "chrome/browser/task_manager/task_manager.h"
27 #include "chrome/browser/ui/browser.h" 29 #include "chrome/browser/ui/browser.h"
28 #include "chrome/browser/ui/browser_window.h" 30 #include "chrome/browser/ui/browser_window.h"
29 #include "chrome/browser/ui/global_error.h" 31 #include "chrome/browser/ui/global_error.h"
30 #include "chrome/browser/ui/global_error_service.h" 32 #include "chrome/browser/ui/global_error_service.h"
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 int zoom_percent = 100; 569 int zoom_percent = 100;
568 if (browser_->GetSelectedWebContents()) { 570 if (browser_->GetSelectedWebContents()) {
569 zoom_percent = browser_->GetSelectedWebContents()->GetZoomPercent( 571 zoom_percent = browser_->GetSelectedWebContents()->GetZoomPercent(
570 &enable_increment, &enable_decrement); 572 &enable_increment, &enable_decrement);
571 } 573 }
572 zoom_label_ = l10n_util::GetStringFUTF16( 574 zoom_label_ = l10n_util::GetStringFUTF16(
573 IDS_ZOOM_PERCENT, base::IntToString16(zoom_percent)); 575 IDS_ZOOM_PERCENT, base::IntToString16(zoom_percent));
574 } 576 }
575 577
576 string16 WrenchMenuModel::GetSyncMenuLabel() const { 578 string16 WrenchMenuModel::GetSyncMenuLabel() const {
577 return sync_ui_util::GetSyncMenuLabel(ProfileSyncServiceFactory:: 579 Profile* profile = browser_->profile()->GetOriginalProfile();
578 GetInstance()->GetForProfile(browser_->profile()->GetOriginalProfile())); 580 return sync_ui_util::GetSyncMenuLabel(
581 ProfileSyncServiceFactory::GetForProfile(profile),
582 *SigninManagerFactory::GetForProfile(profile));
579 } 583 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/sync_ui_util_unittest.cc ('k') | chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698