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

Side by Side Diff: chrome/browser/ui/ash/multi_user/multi_user_util.h

Issue 149703006: Fixing problem with browser invocations from a visiting files application (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Win Created 6 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 #ifndef CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_UTIL_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_UTIL_H_
6 #define CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_UTIL_H_ 6 #define CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 class Profile; 10 class Profile;
(...skipping 14 matching lines...) Expand all
25 Profile* GetProfileFromUserID(const std::string& user_id); 25 Profile* GetProfileFromUserID(const std::string& user_id);
26 26
27 // Get a profile for a |window|. Returns NULL if window belongs to no profile. 27 // Get a profile for a |window|. Returns NULL if window belongs to no profile.
28 Profile* GetProfileFromWindow(aura::Window* window); 28 Profile* GetProfileFromWindow(aura::Window* window);
29 29
30 // Check if the given profile is from the currently active user. Note that since 30 // Check if the given profile is from the currently active user. Note that since
31 // only Chrome OS has the concept of an active user, only Chrome OS can ever 31 // only Chrome OS has the concept of an active user, only Chrome OS can ever
32 // return false. 32 // return false.
33 bool IsProfileFromActiveUser(Profile* profile); 33 bool IsProfileFromActiveUser(Profile* profile);
34 34
35 // Gets the current user. Note that this will only return for ChromeOS a string.
36 // All other operating systems will get an empty string.
37 const std::string& GetCurrentUserId();
38
39 // Move the window to the current user's desktop.
40 void MoveWindowToCurrentDesktop(aura::Window* window);
41
35 } // namespace multi_user_util 42 } // namespace multi_user_util
36 43
37 #endif // CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_UTIL_H_ 44 #endif // CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_UTIL_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/file_manager/open_with_browser.cc ('k') | chrome/browser/ui/ash/multi_user/multi_user_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698