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

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

Issue 18252003: Replace third_party/icu/public with third_party/icu/source (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: roll ICU to 211851 Created 7 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/signin/signin_manager.h" 5 #include "chrome/browser/signin/signin_manager.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 20 matching lines...) Expand all
31 #include "chrome/common/pref_names.h" 31 #include "chrome/common/pref_names.h"
32 #include "content/public/browser/browser_thread.h" 32 #include "content/public/browser/browser_thread.h"
33 #include "content/public/browser/notification_service.h" 33 #include "content/public/browser/notification_service.h"
34 #include "content/public/browser/render_process_host.h" 34 #include "content/public/browser/render_process_host.h"
35 #include "google_apis/gaia/gaia_auth_fetcher.h" 35 #include "google_apis/gaia/gaia_auth_fetcher.h"
36 #include "google_apis/gaia/gaia_auth_util.h" 36 #include "google_apis/gaia/gaia_auth_util.h"
37 #include "google_apis/gaia/gaia_constants.h" 37 #include "google_apis/gaia/gaia_constants.h"
38 #include "google_apis/gaia/gaia_urls.h" 38 #include "google_apis/gaia/gaia_urls.h"
39 #include "net/base/escape.h" 39 #include "net/base/escape.h"
40 #include "net/url_request/url_request_context.h" 40 #include "net/url_request/url_request_context.h"
41 #include "third_party/icu/public/i18n/unicode/regex.h" 41 #include "third_party/icu/source/i18n/unicode/regex.h"
42 42
43 using namespace signin_internals_util; 43 using namespace signin_internals_util;
44 44
45 using content::BrowserThread; 45 using content::BrowserThread;
46 46
47 namespace { 47 namespace {
48 48
49 const char kGetInfoDisplayEmailKey[] = "displayEmail"; 49 const char kGetInfoDisplayEmailKey[] = "displayEmail";
50 const char kGetInfoEmailKey[] = "email"; 50 const char kGetInfoEmailKey[] = "email";
51 51
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 } 708 }
709 } 709 }
710 710
711 void SigninManager::ProhibitSignout(bool prohibit_signout) { 711 void SigninManager::ProhibitSignout(bool prohibit_signout) {
712 prohibit_signout_ = prohibit_signout; 712 prohibit_signout_ = prohibit_signout;
713 } 713 }
714 714
715 bool SigninManager::IsSignoutProhibited() const { 715 bool SigninManager::IsSignoutProhibited() const {
716 return prohibit_signout_; 716 return prohibit_signout_;
717 } 717 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/browser_policy_connector.cc ('k') | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698