diff options
author | treib@chromium.org <treib@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-12 17:14:05 +0000 |
---|---|---|
committer | treib@chromium.org <treib@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-12 17:14:05 +0000 |
commit | d20d04315d2dabd1e5d613adb8dda59a10325508 (patch) | |
tree | 27fb5092d2a17611e07c0057edbeb341c8c596b0 /chrome/browser/app_controller_mac.mm | |
parent | d882d90bf572cb52afe79970acac4f7bd14da5d4 (diff) | |
download | chromium_src-d20d04315d2dabd1e5d613adb8dda59a10325508.zip chromium_src-d20d04315d2dabd1e5d613adb8dda59a10325508.tar.gz chromium_src-d20d04315d2dabd1e5d613adb8dda59a10325508.tar.bz2 |
Rename "managed (mode|user)" to "supervised user" (part 1)
This CL changes:
- "IsManaged" and similar methods in Profile, ProfileInfoCache, and a few other places (which mostly forward to either of those)
- Enum and constant names
- Variable names
- Comments
Still missing:
- I almost certainly missed a few variables and comments
- The actual SU implementation, i.e. c/b/managed_mode/
- JavaScript
- Resource names
But since this CL is already way too huge, I'll try to commit this part now and do the rest in one or more followup CLs.
TBR=thakis@chromium.org (chrome/)
TBR=rogerta@chromium.org (google_apis/)
TBR=haitaol@chromium.org (sync/ and components/sync_driver/)
All the TBRs are simple renames.
BUG=none
Review URL: https://codereview.chromium.org/316863002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276722 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/app_controller_mac.mm')
-rw-r--r-- | chrome/browser/app_controller_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/app_controller_mac.mm b/chrome/browser/app_controller_mac.mm index c99bf13..3c23641 100644 --- a/chrome/browser/app_controller_mac.mm +++ b/chrome/browser/app_controller_mac.mm @@ -1455,7 +1455,7 @@ class AppControllerProfileObserver : public ProfileInfoCacheObserver { [dockMenu addItem:item]; // |profile| can be NULL during unit tests. - if (!profile || !profile->IsManaged()) { + if (!profile || !profile->IsSupervised()) { titleStr = l10n_util::GetNSStringWithFixup(IDS_NEW_INCOGNITO_WINDOW_MAC); item.reset( [[NSMenuItem alloc] initWithTitle:titleStr |