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

Side by Side Diff: chrome/browser/signin/signin_ui_util.cc

Issue 469993006: Use a qualified path for chromium_strings, google_chrome_strings, and generated_resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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
« no previous file with comments | « chrome/browser/signin/signin_global_error.cc ('k') | chrome/browser/ssl/ssl_add_certificate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/signin/signin_ui_util.h" 5 #include "chrome/browser/signin/signin_ui_util.h"
6 6
7 #include "base/prefs/pref_service.h" 7 #include "base/prefs/pref_service.h"
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 11 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
12 #include "chrome/browser/signin/signin_global_error.h" 12 #include "chrome/browser/signin/signin_global_error.h"
13 #include "chrome/browser/signin/signin_global_error_factory.h" 13 #include "chrome/browser/signin/signin_global_error_factory.h"
14 #include "chrome/browser/signin/signin_manager_factory.h" 14 #include "chrome/browser/signin/signin_manager_factory.h"
15 #include "chrome/browser/sync/profile_sync_service.h" 15 #include "chrome/browser/sync/profile_sync_service.h"
16 #include "chrome/browser/sync/profile_sync_service_factory.h" 16 #include "chrome/browser/sync/profile_sync_service_factory.h"
17 #include "chrome/browser/sync/sync_global_error.h" 17 #include "chrome/browser/sync/sync_global_error.h"
18 #include "chrome/browser/sync/sync_global_error_factory.h" 18 #include "chrome/browser/sync/sync_global_error_factory.h"
19 #include "chrome/browser/ui/browser_navigator.h" 19 #include "chrome/browser/ui/browser_navigator.h"
20 #include "chrome/common/pref_names.h" 20 #include "chrome/common/pref_names.h"
21 #include "chrome/grit/chromium_strings.h"
22 #include "chrome/grit/generated_resources.h"
21 #include "components/signin/core/browser/profile_oauth2_token_service.h" 23 #include "components/signin/core/browser/profile_oauth2_token_service.h"
22 #include "components/signin/core/browser/signin_manager.h" 24 #include "components/signin/core/browser/signin_manager.h"
23 #include "components/signin/core/common/profile_management_switches.h" 25 #include "components/signin/core/common/profile_management_switches.h"
24 #include "grit/chromium_strings.h"
25 #include "grit/generated_resources.h"
26 #include "ui/base/l10n/l10n_util.h" 26 #include "ui/base/l10n/l10n_util.h"
27 #include "ui/gfx/font_list.h" 27 #include "ui/gfx/font_list.h"
28 #include "ui/gfx/text_elider.h" 28 #include "ui/gfx/text_elider.h"
29 29
30 namespace { 30 namespace {
31 // Maximum width of a username - we trim emails that are wider than this so 31 // Maximum width of a username - we trim emails that are wider than this so
32 // the wrench menu doesn't get ridiculously wide. 32 // the wrench menu doesn't get ridiculously wide.
33 const int kUsernameMaxWidth = 200; 33 const int kUsernameMaxWidth = 200;
34 } // namespace 34 } // namespace
35 35
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 void ShowSigninErrorLearnMorePage(Profile* profile) { 168 void ShowSigninErrorLearnMorePage(Profile* profile) {
169 static const char kSigninErrorLearnMoreUrl[] = 169 static const char kSigninErrorLearnMoreUrl[] =
170 "https://support.google.com/chrome/answer/1181420?"; 170 "https://support.google.com/chrome/answer/1181420?";
171 chrome::NavigateParams params( 171 chrome::NavigateParams params(
172 profile, GURL(kSigninErrorLearnMoreUrl), content::PAGE_TRANSITION_LINK); 172 profile, GURL(kSigninErrorLearnMoreUrl), content::PAGE_TRANSITION_LINK);
173 params.disposition = NEW_FOREGROUND_TAB; 173 params.disposition = NEW_FOREGROUND_TAB;
174 chrome::Navigate(&params); 174 chrome::Navigate(&params);
175 } 175 }
176 176
177 } // namespace signin_ui_util 177 } // namespace signin_ui_util
OLDNEW
« no previous file with comments | « chrome/browser/signin/signin_global_error.cc ('k') | chrome/browser/ssl/ssl_add_certificate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698