ChromeSettingScope enum
The scope of the ChromeSetting. One of
- regular: setting for the regular profile (which is inherited by the incognito profile if not overridden elsewhere),
regular_only
: setting for the regular profile only (not inherited by the incognito profile),incognito_persistent
: setting for the incognito profile that survives browser restarts (overrides regular preferences),incognito_session_only
: setting for the incognito profile that can only be set during an incognito session and is deleted when the incognito session ends (overrides regular and incognito_persistent preferences).
Values
- regular → const ChromeSettingScope
-
const ChromeSettingScope('regular')
- regularOnly → const ChromeSettingScope
-
const ChromeSettingScope('regular_only')
- incognitoPersistent → const ChromeSettingScope
-
const ChromeSettingScope('incognito_persistent')
- incognitoSessionOnly → const ChromeSettingScope
-
const ChromeSettingScope('incognito_session_only')
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromJS(
String value) → ChromeSettingScope
Constants
-
values
→ const List<
ChromeSettingScope> - A constant List of the values in this enum, in order of their declaration.