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

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

Issue 19945004: Modal window in user session not blocks user adding screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compilation for win. Created 7 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/ui/ash/session_state_delegate_views.h ('k') | no next file » | 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 28 matching lines...) Expand all
39 bool SessionStateDelegate::IsScreenLocked() const { 39 bool SessionStateDelegate::IsScreenLocked() const {
40 return false; 40 return false;
41 } 41 }
42 42
43 void SessionStateDelegate::LockScreen() { 43 void SessionStateDelegate::LockScreen() {
44 } 44 }
45 45
46 void SessionStateDelegate::UnlockScreen() { 46 void SessionStateDelegate::UnlockScreen() {
47 } 47 }
48 48
49 bool SessionStateDelegate::IsUserSessionBlocked() const {
50 return false;
51 }
52
49 const base::string16 SessionStateDelegate::GetUserDisplayName( 53 const base::string16 SessionStateDelegate::GetUserDisplayName(
50 ash::MultiProfileIndex index) const { 54 ash::MultiProfileIndex index) const {
51 NOTIMPLEMENTED(); 55 NOTIMPLEMENTED();
52 return UTF8ToUTF16(""); 56 return UTF8ToUTF16("");
53 } 57 }
54 58
55 const std::string SessionStateDelegate::GetUserEmail( 59 const std::string SessionStateDelegate::GetUserEmail(
56 ash::MultiProfileIndex index) const { 60 ash::MultiProfileIndex index) const {
57 NOTIMPLEMENTED(); 61 NOTIMPLEMENTED();
58 return ""; 62 return "";
(...skipping 16 matching lines...) Expand all
75 79
76 void SessionStateDelegate::AddSessionStateObserver( 80 void SessionStateDelegate::AddSessionStateObserver(
77 ash::SessionStateObserver* observer) { 81 ash::SessionStateObserver* observer) {
78 NOTIMPLEMENTED(); 82 NOTIMPLEMENTED();
79 } 83 }
80 84
81 void SessionStateDelegate::RemoveSessionStateObserver( 85 void SessionStateDelegate::RemoveSessionStateObserver(
82 ash::SessionStateObserver* observer) { 86 ash::SessionStateObserver* observer) {
83 NOTIMPLEMENTED(); 87 NOTIMPLEMENTED();
84 } 88 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/session_state_delegate_views.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698