Home | History | Annotate | Download | only in content_settings

Lines Matching defs:setting

45                                            ContentSetting setting) {
47 setting == CONTENT_SETTING_ASK) {
50 return setting;
110 // Migrate the obsolete media content setting exceptions to the new settings.
314 // Skip default setting and rules without a value.
332 // Add the exception to the new microphone content setting.
340 // Add the exception to the new camera content setting.
424 int setting = CONTENT_SETTING_DEFAULT;
425 bool is_integer = j.value().GetAsInteger(&setting);
427 DCHECK_NE(CONTENT_SETTING_DEFAULT, setting);
432 base::Value::CreateIntegerValue(setting));
438 const base::DictionaryValue* setting = NULL;
441 GetTypeName(ContentSettingsType(i)), &setting)) {
442 DCHECK(!setting->empty());
443 value = setting->DeepCopy();
446 int setting = CONTENT_SETTING_DEFAULT;
448 GetTypeName(ContentSettingsType(i)), &setting)) {
449 DCHECK_NE(CONTENT_SETTING_DEFAULT, setting);
450 setting = FixObsoleteCookiePromptMode(content_type,
451 ContentSetting(setting));
452 value = base::Value::CreateIntegerValue(setting);