Home | History | Annotate | Download | only in content_settings

Lines Matching defs:setting

45 // The default setting for each content type.
131 ContentSetting setting) {
135 setting != CONTENT_SETTING_ASK ||
140 // Instead, they are synced to the main profile's setting.
152 if ((setting == CONTENT_SETTING_DEFAULT) ||
153 (setting == kDefaultSettings[content_type])) {
159 default_content_settings_.settings[content_type] = setting;
161 dictionary_path, Value::CreateIntegerValue(setting));
265 int setting = CONTENT_SETTING_DEFAULT;
267 &setting);
269 settings->settings[type] = IntToContentSetting(setting);
298 ContentSetting setting = IntToContentSetting(
300 UpdateDefaultSetting(CONTENT_SETTINGS_TYPE_NOTIFICATIONS, setting);
386 ContentSetting setting) {
395 setting != CONTENT_SETTING_ASK ||
429 if (setting != CONTENT_SETTING_DEFAULT) {
432 resource_identifier)] = setting;
439 settings.settings[content_type] = setting;
462 DCHECK_NE(setting, CONTENT_SETTING_DEFAULT);
473 if (setting == CONTENT_SETTING_DEFAULT) {
478 resource_identifier, Value::CreateIntegerValue(setting));
482 if (setting == CONTENT_SETTING_DEFAULT) {
487 dictionary_path, Value::CreateIntegerValue(setting));
712 int setting = CONTENT_SETTING_DEFAULT;
714 &setting);
716 settings->settings[type] = IntToContentSetting(setting);
747 int setting = CONTENT_SETTING_DEFAULT;
749 resource_identifier, &setting);
754 ContentSetting(setting));