Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / prefs / incognito_mode_prefs.h
blob698250fc9f0c3512512c876deb26ceb231ec5a8d
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_PREFS_INCOGNITO_MODE_PREFS_H_
6 #define CHROME_BROWSER_PREFS_INCOGNITO_MODE_PREFS_H_
8 #include "base/basictypes.h"
10 class CommandLine;
11 class PrefService;
12 class Profile;
14 namespace user_prefs {
15 class PrefRegistrySyncable;
18 // Specifies Incognito mode availability preferences.
19 class IncognitoModePrefs {
20 public:
21 // Possible values for Incognito mode availability. Please, do not change
22 // the order of entries since numeric values are exposed to users.
23 enum Availability {
24 // Incognito mode enabled. Users may open pages in both Incognito mode and
25 // normal mode (the default behaviour).
26 ENABLED = 0,
27 // Incognito mode disabled. Users may not open pages in Incognito mode.
28 // Only normal mode is available for browsing.
29 DISABLED,
30 // Incognito mode forced. Users may open pages *ONLY* in Incognito mode.
31 // Normal mode is not available for browsing.
32 FORCED,
34 AVAILABILITY_NUM_TYPES
37 // Register incognito related preferences.
38 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
40 // Returns kIncognitoModeAvailability preference value stored
41 // in the given pref service.
42 static Availability GetAvailability(const PrefService* prefs);
44 // Sets kIncognitoModeAvailability preference to the specified availability
45 // value.
46 static void SetAvailability(PrefService* prefs,
47 const Availability availability);
49 // Converts in_value into the corresponding Availability value. Returns true
50 // if conversion is successful (in_value is valid). Otherwise, returns false
51 // and *out_value is set to ENABLED.
52 static bool IntToAvailability(int in_value, Availability* out_value);
54 // Returns true if the browser should start in incognito mode.
55 static bool ShouldLaunchIncognito(const CommandLine& command_line,
56 const PrefService* prefs);
58 // Returns true if |profile| can open a new Browser. This checks the incognito
59 // availability policies and verifies if the |profile| type is allowed to
60 // open new windows.
61 static bool CanOpenBrowser(Profile* profile);
63 private:
64 // Returns whether parental controls have been enabled on the platform, which
65 // if enabled will overrule the Availability as configured in prefs.
66 static bool ArePlatformParentalControlsEnabled();
68 DISALLOW_IMPLICIT_CONSTRUCTORS(IncognitoModePrefs);
71 #endif // CHROME_BROWSER_PREFS_INCOGNITO_MODE_PREFS_H_