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

Unified Diff: chrome/browser/supervised_user/supervised_user_theme.h

Issue 335833003: Rename "managed (mode|user)" to "supervised user" (part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments (+ a few other cleanups) Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/supervised_user/supervised_user_theme.h
diff --git a/chrome/browser/managed_mode/managed_user_theme.h b/chrome/browser/supervised_user/supervised_user_theme.h
similarity index 64%
rename from chrome/browser/managed_mode/managed_user_theme.h
rename to chrome/browser/supervised_user/supervised_user_theme.h
index e23995cd44ec609682a6fe4298ffd37fd365a312..620c3befbac986c860281988c2a052e373efa92e 100644
--- a/chrome/browser/managed_mode/managed_user_theme.h
+++ b/chrome/browser/supervised_user/supervised_user_theme.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_MANAGED_MODE_MANAGED_USER_THEME_H_
-#define CHROME_BROWSER_MANAGED_MODE_MANAGED_USER_THEME_H_
+#ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_THEME_H_
+#define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_THEME_H_
#include "chrome/browser/themes/custom_theme_supplier.h"
@@ -13,9 +13,9 @@ class Image;
// This theme is used as a default theme for supervised users. It uses a light
// blue as frame color, and defines color properties for the avatar label.
-class ManagedUserTheme : public CustomThemeSupplier {
+class SupervisedUserTheme : public CustomThemeSupplier {
public:
- ManagedUserTheme();
+ SupervisedUserTheme();
// Overridden from CustomThemeSupplier:
virtual bool GetColor(int id, SkColor* color) const OVERRIDE;
@@ -23,9 +23,9 @@ class ManagedUserTheme : public CustomThemeSupplier {
virtual bool HasCustomImage(int id) const OVERRIDE;
private:
- virtual ~ManagedUserTheme();
+ virtual ~SupervisedUserTheme();
- DISALLOW_COPY_AND_ASSIGN(ManagedUserTheme);
+ DISALLOW_COPY_AND_ASSIGN(SupervisedUserTheme);
};
-#endif // CHROME_BROWSER_MANAGED_MODE_MANAGED_USER_THEME_H_
+#endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_THEME_H_

Powered by Google App Engine
This is Rietveld 408576698