diff options
Diffstat (limited to 'chrome/browser/managed_mode.h')
-rw-r--r-- | chrome/browser/managed_mode.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/chrome/browser/managed_mode.h b/chrome/browser/managed_mode.h new file mode 100644 index 0000000..93cc9ad --- /dev/null +++ b/chrome/browser/managed_mode.h @@ -0,0 +1,23 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// 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_H_ +#define CHROME_BROWSER_MANAGED_MODE_H_ + +class PrefService; + +class ManagedMode { + public: + static void RegisterPrefs(PrefService* prefs); + static bool IsInManagedMode(); + + // Returns true iff managed mode was entered sucessfully. + static bool EnterManagedMode(); + static void LeaveManagedMode(); + + private: + static void SetInManagedMode(bool in_managed_mode); +}; + +#endif // CHROME_BROWSER_MANAGED_MODE_H_ |