HomeSort by relevance Sort by last modified time
    Searched refs:mime_type (Results 26 - 50 of 419) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/child/npapi/
plugin_string_stream.cc 23 const std::string &mime_type) {
29 if (Open(mime_type, std::string(), length, 0, false)) {
plugin_string_stream.h 29 const std::string& mime_type);
webplugin_resource_client.h 24 virtual void DidReceiveResponse(const std::string& mime_type,
  /external/chromium_org/chrome/browser/chromeos/drive/
write_on_cache_file.cc 51 const std::string& mime_type,
53 WriteOnCacheFileAndReply(file_system, path, mime_type, callback,
59 const std::string& mime_type,
70 mime_type,
  /external/chromium_org/chrome/browser/download/
download_target_info.h 38 std::string mime_type; member in struct:DownloadTargetInfo
  /external/chromium_org/content/public/child/
resource_dispatcher_delegate.h 32 const std::string& mime_type,
  /external/chromium_org/net/base/
filename_util_unsafe.h 25 const std::string& mime_type,
platform_mime_util_win.cc 29 const std::string& mime_type, base::FilePath::StringType* ext) const {
31 L"MIME\\Database\\Content Type\\" + base::UTF8ToWide(mime_type));
44 const std::string& mime_type,
51 if (GetPreferredExtensionForMimeType(mime_type, &ext))
filename_util_unsafe.cc 38 const std::string& mime_type,
45 mime_type,
filename_util_icu.cc 50 const std::string& mime_type,
57 mime_type,
66 const std::string& mime_type,
73 mime_type,
mime_sniffer.h 22 // Examine the URL and the mime_type and decide whether we should sniff a
26 // @param mime_type The current mime type, e.g. from the Content-Type header.
29 const std::string& mime_type);
  /external/chromium_org/net/url_request/
url_request_about_job.h 22 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
url_request_data_job.h 22 virtual int GetData(std::string* mime_type,
url_request_simple_job.h 27 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
43 virtual int GetData(std::string* mime_type,
  /external/chromium_org/chrome/browser/plugins/
plugin_metadata.cc 48 void PluginMetadata::AddMimeType(const std::string& mime_type) {
49 all_mime_types_.push_back(mime_type);
52 void PluginMetadata::AddMatchingMimeType(const std::string& mime_type) {
53 matching_mime_types_.push_back(mime_type);
56 bool PluginMetadata::HasMimeType(const std::string& mime_type) const {
57 return std::find(all_mime_types_.begin(), all_mime_types_.end(), mime_type) !=
67 if (plugin.mime_types[j].mime_type == matching_mime_types_[i])
  /external/chromium_org/content/common/
plugin_list.cc 145 WebPluginMimeType mime_type; local
146 mime_type.mime_type = StringToLowerASCII(mime_types[i]);
148 base::SplitString(file_extensions[i], ',', &mime_type.file_extensions);
151 mime_type.description = descriptions[i];
156 size_t ext = mime_type.description.find(base::ASCIIToUTF16("(*"));
158 if (ext > 1 && mime_type.description[ext - 1] == ' ')
161 mime_type.description.erase(ext);
165 parsed_mime_types->push_back(mime_type);
231 const std::string &mime_type = plugin_info->mime_types[i].mime_type local
388 const WebPluginMimeType& mime_type = plugin.mime_types[i]; local
    [all...]
  /external/chromium_org/chrome/renderer/plugins/
plugin_uma.cc 156 const std::string& mime_type) {
157 if (mime_type == kWindowsMediaPlayerType)
161 if (strncmp(mime_type.c_str(), kSilverlightTypePrefix, prefix_length) == 0)
165 if (strncmp(mime_type.c_str(), kRealPlayerTypePrefix, prefix_length) == 0)
168 if (strstr(mime_type.c_str(), kJavaTypeSubstring))
171 if (mime_type == kQuickTimeType)
174 if (mime_type == content::kBrowserPluginMimeType)
177 if (mime_type == content::kFlashPluginSwfMimeType ||
178 mime_type == content::kFlashPluginSplMimeType) {
183 if (mime_type == kWidevineCdmPluginMimeType
    [all...]
  /external/chromium_org/remoting/protocol/
clipboard_echo_filter_unittest.cc 18 MATCHER_P2(EqualsClipboardEvent, mime_type, data, "") {
19 return arg.mime_type() == mime_type && arg.data() == data;
22 static ClipboardEvent MakeClipboardEvent(const std::string& mime_type,
25 event.set_mime_type(mime_type);
  /external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.cc 78 voice_codecs_.push_back(AudioCodec(110, payload_type_speex_wb.mime_type, payload_type_speex_wb.clock_rate, 0, 1, 8));
79 voice_codecs_.push_back(AudioCodec(111, payload_type_speex_nb.mime_type, payload_type_speex_nb.clock_rate, 0, 1, 7));
84 voice_codecs_.push_back(AudioCodec(102, payload_type_ilbc.mime_type, payload_type_ilbc.clock_rate, 0, 1, 4));
87 voice_codecs_.push_back(AudioCodec(0, payload_type_pcmu8000.mime_type, payload_type_pcmu8000.clock_rate, 0, 1, 2));
88 voice_codecs_.push_back(AudioCodec(101, payload_type_telephone_event.mime_type, payload_type_telephone_event.clock_rate, 0, 1, 1));
115 if (c.name == payload_type_telephone_event.mime_type)
118 if (c.name == payload_type_speex_wb.mime_type && c.clockrate == payload_type_speex_wb.clock_rate)
120 if (c.name == payload_type_speex_nb.mime_type && c.clockrate == payload_type_speex_nb.clock_rate)
124 if (have_ilbc && c.name == payload_type_ilbc.mime_type)
175 if (engine_->have_ilbc && i->name == payload_type_ilbc.mime_type) {
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
create_file_operation.cc 46 // If mime_type is not set or "application/octet-stream", guess from the
48 std::string mime_type = mime_type_in;
49 if ((mime_type.empty() || mime_type == kMimeTypeOctetStream) &&
50 !net::GetMimeTypeFromFile(file_path, &mime_type))
51 mime_type = kMimeTypeOctetStream;
61 entry->mutable_file_specific_info()->set_content_mime_type(mime_type);
88 const std::string& mime_type,
100 mime_type,
  /external/chromium_org/net/filter/
mock_filter_context.cc 21 bool MockFilterContext::GetMimeType(std::string* mime_type) const {
22 *mime_type = mime_type_;
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
nacl_modules_handler.cc 67 // Get nacl_modules[i].mime_type.
68 std::string mime_type; local
69 if (!module_value->GetString(keys::kNaClModulesMIMEType, &mime_type)) {
78 nacl_module_data->nacl_modules_.back().mime_type = mime_type;
nacl_modules_handler.h 24 std::string mime_type; member in struct:extensions::NaClModuleInfo
  /external/chromium_org/components/metrics/
metrics_log_uploader.h 21 // with the given |mime_type|. The |on_upload_complete| callback will be
24 const std::string& mime_type,
  /external/chromium_org/content/browser/
histogram_internals_request_job.h 20 virtual int GetData(std::string* mime_type,

Completed in 808 milliseconds

12 3 4 5 6 7 8 91011>>