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

Side by Side Diff: chrome/browser/ui/ash/session_state_delegate_views.cc

Issue 112913004: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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/ui/ash/screenshot_taker.cc ('k') | chrome/browser/ui/ash/shelf_browsertest.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/ui/ash/session_state_delegate_views.h" 5 #include "chrome/browser/ui/ash/session_state_delegate_views.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "ui/gfx/image/image_skia.h" 10 #include "ui/gfx/image/image_skia.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 void SessionStateDelegate::UnlockScreen() { 50 void SessionStateDelegate::UnlockScreen() {
51 } 51 }
52 52
53 bool SessionStateDelegate::IsUserSessionBlocked() const { 53 bool SessionStateDelegate::IsUserSessionBlocked() const {
54 return false; 54 return false;
55 } 55 }
56 56
57 const base::string16 SessionStateDelegate::GetUserDisplayName( 57 const base::string16 SessionStateDelegate::GetUserDisplayName(
58 ash::MultiProfileIndex index) const { 58 ash::MultiProfileIndex index) const {
59 NOTIMPLEMENTED(); 59 NOTIMPLEMENTED();
60 return UTF8ToUTF16(""); 60 return base::UTF8ToUTF16("");
61 } 61 }
62 62
63 const std::string SessionStateDelegate::GetUserEmail( 63 const std::string SessionStateDelegate::GetUserEmail(
64 ash::MultiProfileIndex index) const { 64 ash::MultiProfileIndex index) const {
65 NOTIMPLEMENTED(); 65 NOTIMPLEMENTED();
66 return ""; 66 return "";
67 } 67 }
68 68
69 const std::string SessionStateDelegate::GetUserID( 69 const std::string SessionStateDelegate::GetUserID(
70 ash::MultiProfileIndex index) const { 70 ash::MultiProfileIndex index) const {
(...skipping 29 matching lines...) Expand all
100 ash::SessionStateObserver* observer) { 100 ash::SessionStateObserver* observer) {
101 NOTIMPLEMENTED(); 101 NOTIMPLEMENTED();
102 } 102 }
103 103
104 bool SessionStateDelegate::TransferWindowToDesktopOfUser( 104 bool SessionStateDelegate::TransferWindowToDesktopOfUser(
105 aura::Window* window, 105 aura::Window* window,
106 ash::MultiProfileIndex index) { 106 ash::MultiProfileIndex index) {
107 NOTIMPLEMENTED(); 107 NOTIMPLEMENTED();
108 return false; 108 return false;
109 } 109 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/screenshot_taker.cc ('k') | chrome/browser/ui/ash/shelf_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698