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

1 2 3

  /external/chromium/net/tools/fetch/
http_server_response_info.h 28 std::string content_type; member in class:HttpServerResponseInfo
  /external/chromium_org/net/tools/fetch/
http_server_response_info.h 27 std::string content_type; member in class:HttpServerResponseInfo
  /external/chromium_org/third_party/libjingle/source/talk/base/
multipart_unittest.cc 47 std::string content_type; local
48 multipart.GetContentType(&content_type);
49 EXPECT_EQ(kTestContentType, content_type);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannel.h 44 TransportChannel(const std::string& name, const std::string &content_type)
45 : name_(name), content_type_(content_type),
51 const std::string& content_type() const { return content_type_; } function in class:cricket::TransportChannel
sessionmanager.cc 60 void SessionManager::AddClient(const std::string& content_type,
62 ASSERT(client_map_.find(content_type) == client_map_.end());
63 client_map_[content_type] = client;
66 void SessionManager::RemoveClient(const std::string& content_type) {
67 ClientMap::iterator iter = client_map_.find(content_type);
72 SessionClient* SessionManager::GetClient(const std::string& content_type) {
73 ClientMap::iterator iter = client_map_.find(content_type);
78 const std::string& content_type) {
81 content_type, false);
86 const std::string& sid, const std::string& content_type,
168 std::string content_type; local
    [all...]
  /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_default_provider.cc 179 ContentSettingsType content_type,
211 ValueToContentSetting(value.get()) == kDefaultSettings[content_type]) {
214 default_settings_[content_type].reset(
215 Value::CreateIntegerValue(kDefaultSettings[content_type]));
220 GetTypeName(content_type), NULL);
222 default_settings_[content_type].reset(value->DeepCopy());
225 GetTypeName(content_type), value.release());
231 content_type, local
238 ContentSettingsType content_type,
243 ValueMap::const_iterator it(default_settings_.find(content_type));
    [all...]
content_settings_policy_provider.cc 56 ContentSettingsType content_type; member in struct:__anon7083::PrefsForManagedContentSettingsMapEntry
238 ContentSettingsType content_type,
241 return value_map_.GetRuleIterator(content_type, resource_identifier, &lock_);
279 ContentSettingsType content_type = local
280 kPrefsForManagedContentSettingsMap[i].content_type;
281 DCHECK_NE(content_type, CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE);
289 content_type,
388 ContentSettingsType content_type) {
395 DCHECK(!prefs_->HasPrefPath(kPrefToManageType[content_type]) ||
396 prefs_->IsManagedPreference(kPrefToManageType[content_type]));
404 content_type, local
410 content_type, local
    [all...]
  /external/chromium_org/net/test/embedded_test_server/
http_response.h 46 const std::string& content_type() const { return content_type_; } function in class:net::test_server::BasicHttpResponse
47 void set_content_type(const std::string& content_type) {
48 content_type_ = content_type;
embedded_test_server_unittest.cc 34 std::string content_type; local
35 if (headers->GetMimeType(&content_type))
36 return content_type;
87 const std::string& content_type,
97 http_response->set_content_type(content_type);
  /external/chromium_org/webkit/common/blob/
blob_data.h 54 const std::string& content_type() const { return content_type_; } function in class:webkit_blob::BlobData
55 void set_content_type(const std::string& content_type) {
56 content_type_ = content_type;
83 if (a.content_type() != b.content_type())
  /external/bison/src/
symlist.h 39 } content_type; member in struct:symbol_list
43 * <tt>symbol_list::content_type = SYMLIST_SYMBOL</tt>.
47 * The semantic type iff <tt>symbol_list::content_type = SYMLIST_TYPE</tt>.
98 \pre For every node \c n in the list, <tt>n->content_type =
  /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));
99 ContentSettingsType content_type; local
100 EXTENSION_FUNCTION_VALIDATE(RemoveContentType(args_.get(), &content_type));
152 if (content_type == CONTENT_SETTINGS_TYPE_COOKIES) {
158 setting = map->GetContentSetting(primary_url, secondary_url, content_type,
172 ContentSettingsType content_type; local
246 secondary_pattern, content_type, local
252 ContentSettingsType content_type; local
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_view_host_observer.cc 240 const std::string& content_type = post_content.first; local
243 DCHECK(!content_type.empty());
249 content_type.c_str());
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
peer_channel.h 65 void QueueResponse(const std::string& status, const std::string& content_type,
72 std::string status, content_type, extra_headers, data; member in struct:ChannelMember::QueuedResponse
131 std::string* content_type);
data_socket.h 98 const std::string& content_type() const { return content_type_; } function in class:DataSocket
123 // header will be included. |content_type| is the mime content type, not
130 const std::string& content_type,
  /external/chromium/chrome/browser/content_settings/
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_policy_provider.cc 44 ContentSettingsType content_type; member in struct:__anon4472::PrefsForManagedContentSettingsMapEntry
133 ContentSettingsType content_type) const {
135 return managed_default_content_settings_.settings[content_type];
139 ContentSettingsType content_type,
144 ContentSettingsType content_type) const {
146 if (managed_default_content_settings_.settings[content_type] !=
284 ContentSettingsType content_type) {
286 if (kPrefToManageType[content_type] == NULL) {
287 content_type_is_managed_[content_type] = false;
289 content_type_is_managed_[content_type]
    [all...]
host_content_settings_map.cc 132 ContentSettingsType content_type) const {
138 (*provider)->ProvideDefaultSetting(content_type);
151 ContentSettingsType content_type,
154 content_type,
157 return GetDefaultContentSetting(content_type);
163 ContentSettingsType content_type,
175 url, url, content_type, resource_identifier);
176 bool isManaged = (*provider)->ContentSettingsTypeIsManaged(content_type);
214 ContentSettingsType content_type,
220 // Collect content_settings::Rules for the given content_type an
280 content_type, local
284 content_type, local
    [all...]
  /external/chromium_org/chrome/browser/drive/
drive_uploader.cc 50 const std::string& content_type,
54 content_type(content_type),
72 "], content_type=[" + content_type +
86 const std::string content_type; member in struct:drive::DriveUploader::UploadFileInfo
140 const std::string& content_type,
147 DCHECK(!content_type.empty());
152 content_type,
164 const std::string& content_type,
    [all...]
  /external/chromium_org/chrome/browser/media/
webrtc_log_uploader.cc 97 std::string content_type = kUploadContentType; local
98 content_type.append("; boundary=");
99 content_type.append(kMultipartBoundary);
104 url_fetcher->SetUploadData(content_type, post_data);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer-private.hh 59 hb_buffer_content_type_t content_type; member in struct:hb_buffer_t
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionmanager.cc 63 void SessionManager::AddClient(const std::string& content_type,
65 ASSERT(client_map_.find(content_type) == client_map_.end());
66 client_map_[content_type] = client;
69 void SessionManager::RemoveClient(const std::string& content_type) {
70 ClientMap::iterator iter = client_map_.find(content_type);
75 SessionClient* SessionManager::GetClient(const std::string& content_type) {
76 ClientMap::iterator iter = client_map_.find(content_type);
81 const std::string& content_type) {
83 return CreateSession(id, local_name, content_type);
88 const std::string& content_type) {
179 std::string content_type; local
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-private.hh 59 hb_buffer_content_type_t content_type; member in struct:hb_buffer_t
  /external/chromium/chrome/browser/
content_setting_bubble_model.h 32 ContentSettingsType content_type);
34 ContentSettingsType content_type() const { return content_type_; } function in class:ContentSettingBubbleModel
93 ContentSettingsType content_type);

Completed in 1556 milliseconds

1 2 3