HomeSort by relevance Sort by last modified time
    Searched full:content_type (Results 1 - 25 of 595) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/content_settings/
content_settings_mock_provider.cc 10 ContentSettingsType content_type,
14 : content_type_(content_type),
24 ContentSettingsType content_type) const {
25 return content_type == content_type_ ? setting_ : CONTENT_SETTING_DEFAULT;
29 ContentSettingsType content_type,
31 if (can_override_ && content_type == content_type_)
36 ContentSettingsType content_type) const {
37 return content_type == content_type_ && is_managed_;
54 ContentSettingsType content_type,
61 content_type_(content_type),
    [all...]
content_settings_mock_provider.h 20 MockDefaultProvider(ContentSettingsType content_type,
28 ContentSettingsType content_type) const;
29 virtual void UpdateDefaultSetting(ContentSettingsType content_type,
32 virtual bool DefaultSettingIsManaged(ContentSettingsType content_type) const;
49 ContentSettingsType content_type,
62 ContentSettingsType content_type,
70 ContentSettingsType content_type,
75 ContentSettingsType content_type,
80 ContentSettingsType content_type) {}
101 void set_content_type(ContentSettingsType content_type) {
105 ContentSettingsType content_type() const { function in class:content_settings::MockProvider
    [all...]
content_settings_provider.h 28 // |content_type|, or CONTENT_SETTING_DEFAULT if nothing be provided for this
31 ContentSettingsType content_type) const = 0;
34 // update the default setting for the given |content_type|. The provider may
36 virtual void UpdateDefaultSetting(ContentSettingsType content_type,
42 // True if the default setting for the |content_type| is policy managed, i.e.,
45 ContentSettingsType content_type) const = 0;
71 // |content_type|.
73 ContentSettingsType content_type) = 0;
84 ContentSettingsType content_type,
88 // |embedding_pattern|, |content_type| tuple. For ContentSettingsTypes tha
    [all...]
content_settings_base_provider.h 41 static ContentSetting ClickToPlayFixup(ContentSettingsType content_type,
53 ContentSettingsType content_type) = 0;
58 ContentSettingsType content_type,
64 ContentSettingsType content_type,
69 ContentSettingsType content_type,
74 ContentSettingsType content_type) = 0;
79 // Returns true if the |content_type| requires a resource identifier.
81 ContentSettingsType content_type) const;
90 ContentSettingsType content_type,
content_settings_policy_provider.h 37 ContentSettingsType content_type) const;
38 virtual void UpdateDefaultSetting(ContentSettingsType content_type,
41 virtual bool DefaultSettingIsManaged(ContentSettingsType content_type) const;
63 void UpdateManagedDefaultSetting(ContentSettingsType content_type);
96 ContentSettingsType content_type);
101 ContentSettingsType content_type,
108 ContentSettingsType content_type,
112 ContentSettingsType content_type);
136 ContentSettingsType content_type);
  /external/chromium_org/chrome/browser/content_settings/
content_settings_origin_identifier_value_map.h 30 ContentSettingsType content_type; member in struct:content_settings::OriginIdentifierValueMap::EntryMapKey
32 EntryMapKey(ContentSettingsType content_type,
70 // Returns an iterator for reading the rules for |content_type| and
76 RuleIterator* GetRuleIterator(ContentSettingsType content_type,
84 // |secondary_pattern|, |content_type|, |resource_identifier| tuple. If
89 ContentSettingsType content_type,
93 // |content_type|, |resource_identifier| tuple. The method takes the ownership
98 ContentSettingsType content_type,
103 // |secondary_pattern|, |content_type|, |resource_identifier| tuple.
107 ContentSettingsType content_type,
    [all...]
content_settings_mock_provider.cc 19 ContentSettingsType content_type,
22 return value_map_.GetRuleIterator(content_type, resource_identifier, NULL);
28 ContentSettingsType content_type,
36 content_type,
content_settings_policy_provider.h 35 ContentSettingsType content_type,
42 ContentSettingsType content_type,
47 ContentSettingsType content_type) OVERRIDE;
59 void UpdateManagedDefaultSetting(ContentSettingsType content_type);
68 void ReadManagedContentSettingsTypes(ContentSettingsType content_type);
host_content_settings_map.cc 70 // Returns true if the |content_type| supports a resource identifier.
72 bool SupportsResourceIdentifier(ContentSettingsType content_type) {
73 return content_type == CONTENT_SETTINGS_TYPE_PLUGINS;
163 ContentSettingsType content_type,
166 provider->GetRuleIterator(content_type, std::string(), false));
180 ContentSettingsType content_type,
192 GetDefaultContentSettingFromProvider(content_type, provider->second);
210 ContentSettingsType content_type,
212 DCHECK(!ContentTypeHasCompoundValue(content_type));
214 primary_url, secondary_url, content_type, resource_identifier, NULL))
261 content_type, local
322 content_type, local
328 content_type, local
    [all...]
content_settings_observable_provider.cc 30 ContentSettingsType content_type,
37 content_type,
content_settings_origin_identifier_value_map.cc 21 // This iterator is used for iterating the rules for |content_type| and
59 ContentSettingsType content_type,
61 : content_type(content_type),
67 if (content_type != other.content_type)
68 return content_type < other.content_type;
92 ContentSettingsType content_type,
95 EntryMapKey key(content_type, resource_identifier)
    [all...]
host_content_settings_map.h 70 ContentSetting GetDefaultContentSetting(ContentSettingsType content_type,
83 ContentSettingsType content_type,
102 ContentSettingsType content_type,
111 void GetSettingsForOneType(ContentSettingsType content_type,
119 void SetDefaultContentSetting(ContentSettingsType content_type,
122 // Sets the content |setting| for the given patterns, |content_type| and
133 ContentSettingsType content_type,
137 // Sets the |value| for the given patterns, |content_type| and
144 ContentSettingsType content_type,
154 ContentSettingsType content_type,
    [all...]
content_settings_custom_extension_provider.cc 26 ContentSettingsType content_type,
29 return extensions_settings_->GetRuleIterator(content_type,
37 ContentSettingsType content_type,
  /external/chromium/chrome/browser/
content_setting_bubble_model.cc 30 ContentSettingsType content_type)
31 : ContentSettingBubbleModel(tab_contents, profile, content_type) {
33 DCHECK_NE(content_type, CONTENT_SETTINGS_TYPE_NOTIFICATIONS);
46 content_type());
95 content_type()) &&
97 content_type())) {
102 if (title_ids[content_type()])
103 set_title(l10n_util::GetStringUTF8(title_ids[content_type()]));
119 set_manage_link(l10n_util::GetStringUTF8(kLinkIDs[content_type()]));
124 tab_contents()->delegate()->ShowContentSettingsPage(content_type());
    [all...]
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.cc 25 ContentSettingsType content_type) const {
26 DCHECK(content_type != CONTENT_SETTINGS_TYPE_GEOLOCATION)
28 DCHECK(content_type != CONTENT_SETTINGS_TYPE_NOTIFICATIONS)
32 if (content_type == CONTENT_SETTINGS_TYPE_IMAGES ||
33 content_type == CONTENT_SETTINGS_TYPE_JAVASCRIPT ||
34 content_type == CONTENT_SETTINGS_TYPE_PLUGINS ||
35 content_type == CONTENT_SETTINGS_TYPE_COOKIES ||
36 content_type == CONTENT_SETTINGS_TYPE_POPUPS)
37 return content_blocked_[content_type];
44 ContentSettingsType content_type) const
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/de-DE/
de-DE_dbg.txt 9 CONTENT_TYPE DEBUG
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-GB/
en-GB_dbg.txt 9 CONTENT_TYPE DEBUG
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-US/
en-US_dbg.txt 9 CONTENT_TYPE DEBUG
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/es-ES/
es-ES_dbg.txt 9 CONTENT_TYPE DEBUG
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/fr-FR/
fr-FR_dbg.txt 9 CONTENT_TYPE DEBUG
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/
it-IT_dbg.txt 9 CONTENT_TYPE DEBUG
  /frameworks/base/telephony/java/com/android/internal/telephony/
IWapPushManager.aidl 26 int processMessage(String app_id, String content_type, in Intent intent);
33 boolean addPackage(String x_app_id, String content_type,
41 boolean updatePackage(String x_app_id, String content_type,
49 boolean deletePackage(String x_app_id, String content_type,
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_bubble_model.cc 90 ContentSettingsType content_type)
91 : ContentSettingBubbleModel(web_contents, profile, content_type),
94 DCHECK_NE(content_type, CONTENT_SETTINGS_TYPE_NOTIFICATIONS);
122 web_contents())->IsContentAllowed(content_type()) &&
124 web_contents())->IsContentBlocked(content_type())) {
129 GetIdForContentType(title_ids, num_title_ids, content_type());
150 GetIdForContentType(kLinkIDs, arraysize(kLinkIDs), content_type())));
155 delegate_->ShowContentSettingsPage(content_type());
164 ContentSettingsType content_type);
176 ContentSettingsType content_type)
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAttributeTableGenerator.java 12 static final String CONTENT_TYPE = "contentType";
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_api.cc 44 ContentSettingsType* content_type) {
51 *content_type =
54 return *content_type != CONTENT_SETTINGS_TYPE_DEFAULT;
65 ContentSettingsType content_type; local
66 EXTENSION_FUNCTION_VALIDATE(RemoveContentType(args_.get(), &content_type));
100 ContentSettingsType content_type; local
101 EXTENSION_FUNCTION_VALIDATE(RemoveContentType(args_.get(), &content_type));
154 if (content_type == CONTENT_SETTINGS_TYPE_COOKIES) {
160 setting = map->GetContentSetting(primary_url, secondary_url, content_type,
174 ContentSettingsType content_type; local
247 secondary_pattern, content_type, local
253 ContentSettingsType content_type; local
    [all...]

Completed in 193 milliseconds

1 2 3 4 5 6 7 8 91011>>