/external/chromium_org/chrome/browser/media_galleries/win/ |
mtp_device_delegate_impl_win_unittest.cc | 65 void CheckGalleryInfo(const MediaFileSystemInfo& info, 122 StorageInfo info(id, location, label, base::string16(), base::string16(), 0); 123 monitor_->receiver()->ProcessAttach(info); 139 const MediaFileSystemInfo& info, 144 EXPECT_EQ(name, info.name); 145 EXPECT_EQ(path, info.path); 146 EXPECT_EQ(removable, info.removable); 147 EXPECT_EQ(media_device, info.media_device); 148 EXPECT_NE(0UL, info.pref_id); 151 EXPECT_NE(0UL, info.transient_device_id.size()) 174 MediaFileSystemInfo info = i->second; local [all...] |
/external/chromium_org/chrome/browser/ |
memory_details_win.cc | 109 ProcessMemoryInformation info; local 110 info.pid = pid; 111 if (info.pid == GetCurrentProcessId()) 112 info.process_type = content::PROCESS_TYPE_BROWSER; 114 info.process_type = content::PROCESS_TYPE_UNKNOWN; 118 metrics->GetCommittedKBytes(&info.committed); 119 metrics->GetWorkingSetKBytes(&info.working_set); 126 info.version = base::ASCIIToWide(version_info.Version()); 130 if (child_info[child].pid != info.pid) 132 info.titles = child_info[child].titles [all...] |
/external/chromium_org/chrome/browser/net/ |
chrome_fraudulent_certificate_reporter_unittest.cc | 37 SSLInfo info; local 39 info.cert = net::ImportCertFromFile(net::GetTestCertsDirectory(), 41 info.cert_status = net::CERT_STATUS_DATE_INVALID; 42 info.is_issued_by_known_root = false; 44 return info; 54 SSLInfo info; local 56 info.cert = net::ImportCertFromFile(net::GetTestCertsDirectory(), 58 info.is_issued_by_known_root = true; 60 return info; 63 // Checks that |info| is good as required by the SSL checks performed i 161 SSLInfo info = GetGoodSSLInfo(); local 168 SSLInfo info = GetBadSSLInfo(); local 175 SSLInfo info = GetGoodSSLInfo(); local [all...] |
/external/chromium_org/chrome/browser/renderer_host/ |
safe_browsing_resource_throttle.cc | 109 const content::ResourceRequestInfo* info = local 120 resource.render_process_host_id = info->GetChildID(); 121 resource.render_view_id = info->GetRouteID();
|
/external/chromium_org/chrome/browser/signin/ |
local_auth.cc | 130 ProfileInfoCache& info = local 132 info.SetLocalAuthCredentialsOfProfileAtIndex(info_index, encoded); 139 ProfileInfoCache& info = local 141 size_t info_index = info.GetIndexOfProfileWithPath(profile->GetPath()); 154 ProfileInfoCache& info = local 158 info.GetLocalAuthCredentialsOfProfileAtIndex(info_index); 191 ProfileInfoCache& info = local 193 size_t info_index = info.GetIndexOfProfileWithPath(profile->GetPath());
|
/external/chromium_org/chrome/browser/ui/toolbar/ |
origin_chip_info_unittest.cc | 43 OriginChipInfo* info() { return info_.get(); } function in class:OriginChipInfoTest 110 EXPECT_EQ(base::ASCIIToUTF16("example.com"), info()->label()); 111 EXPECT_EQ(base::ASCIIToUTF16(kExampleUrl), info()->Tooltip()); 112 EXPECT_EQ(url(), info()->displayed_url()); 113 EXPECT_EQ(ToolbarModel::NONE, info()->security_level()); 121 EXPECT_EQ(base::ASCIIToUTF16("Example [US] example.com"), info()->label()); 122 EXPECT_EQ(base::ASCIIToUTF16(kExampleUrlSecure), info()->Tooltip()); 123 EXPECT_EQ(url(), info()->displayed_url()); 124 EXPECT_EQ(ToolbarModel::EV_SECURE, info()->security_level()); 132 info()->label()) [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
select_file_dialog_extension_unittest.cc | 95 ui::SelectedFileInfo info; local 96 SelectFileDialogExtension::OnFileSelected(kDefaultRoutingID, info,
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
pack_extension_handler.cc | 163 ui::SelectFileDialog::FileTypeInfo info; local 177 info.extensions.push_back(std::vector<base::FilePath::StringType>()); 178 info.extensions.front().push_back(FILE_PATH_LITERAL("pem")); 179 info.extension_description_overrides.push_back( 182 info.include_all_files = true; 194 &info,
|
/external/chromium_org/chrome/common/extensions/api/commands/ |
commands_handler.cc | 33 CommandsInfo* info = static_cast<CommandsInfo*>( local 35 return info ? info->browser_action_command.get() : NULL; 40 CommandsInfo* info = static_cast<CommandsInfo*>( local 42 return info ? info->page_action_command.get() : NULL; 47 CommandsInfo* info = static_cast<CommandsInfo*>( local 49 return info ? &info->named_commands : NULL; 134 CommandsInfo* info) { [all...] |
/external/chromium_org/chrome/common/extensions/api/speech/ |
tts_engine_manifest_handler.cc | 39 TtsVoices* info = static_cast<TtsVoices*>( local 41 return info ? &info->voices : NULL; 52 scoped_ptr<TtsVoices> info(new TtsVoices); 140 info->voices.push_back(voice_data); 143 extension->SetManifestData(keys::kTtsVoices, info.release());
|
/external/chromium_org/chrome/common/extensions/api/url_handlers/ |
url_handlers_parser.cc | 52 UrlHandlers* info = static_cast<UrlHandlers*>( local 54 return info ? &info->handlers : NULL; 136 scoped_ptr<UrlHandlers> info(new UrlHandlers); 155 if (!ParseUrlHandler(iter.key(), *handler, &info->handlers, error)) { 161 extension->SetManifestData(mkeys::kUrlHandlers, info.release());
|
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
automation.cc | 43 scoped_ptr<AutomationInfo> info = local 50 if (!info) 53 extension->SetManifestData(keys::kAutomation, info.release());
|
mime_types_handler.cc | 69 MimeTypesHandlerInfo* info = static_cast<MimeTypesHandlerInfo*>( local 71 if (info) 72 return &info->handler_; 91 scoped_ptr<MimeTypesHandlerInfo> info(new MimeTypesHandlerInfo); 92 info->handler_.set_extension_id(extension->id()); 99 info->handler_.AddMIMEType(filter); 105 info->handler_.set_handler_url(mime_types_handler); 108 extension->SetManifestData(keys::kMimeTypesHandler, info.release());
|
/external/chromium_org/chrome/renderer/ |
security_filter_peer.cc | 74 const content::ResourceResponseInfo& info) { 80 const content::ResourceResponseInfo& info) { 139 const content::ResourceResponseInfo& info) { 140 ProcessResponseInfo(info, &response_info_, mime_type_); 193 const content::ResourceResponseInfo& info) { 210 content::ResourceResponseInfo info; local 211 ProcessResponseInfo(info, &info, mime_type_); 212 info.security_info = security_info; 213 info.content_length = static_cast<int>(data_.size()) [all...] |
/external/chromium_org/chrome/service/ |
service_ipc_server.cc | 121 cloud_print::CloudPrintProxyInfo info; local 122 g_service_process->GetCloudPrintProxy()->GetProxyInfo(&info); 123 channel_->Send(new ServiceHostMsg_CloudPrintProxy_Info(info));
|
/external/chromium_org/chrome/test/chromedriver/ |
commands.cc | 42 base::DictionaryValue info; local 43 info.Set("build", build.DeepCopy()); 44 info.Set("os", os.DeepCopy()); 46 Status(kOk), scoped_ptr<base::Value>(info.DeepCopy()), std::string()); 183 status.AddDetails("Session info: " + browser_info->browser_name + "=" +
|
/external/chromium_org/chromeos/process_proxy/ |
process_proxy_registry.cc | 42 // This should be called with empty info only. 99 // Save info for newly created proxy. We cannot do this before ProcessProxy is 101 ProcessProxyInfo& info = proxy_map_[*pid]; local 102 info.proxy.swap(proxy); 103 info.watcher_thread.reset(watcher_thread.release()); 104 info.process_id = *pid; 105 info.callback = callback;
|
/external/chromium_org/components/cdm/browser/ |
cdm_message_filter_android.cc | 53 const CodecInfo& info = kCodecsToQuery[i]; local 56 bool is_secure = (info.codec_type == CODEC_VIDEO) 58 if ((request.codecs & info.codec) && 60 key_system, info.container_mime_type) && 61 MediaCodecBridge::CanDecode(info.codec_name, is_secure)) { 62 supported_codecs |= info.codec;
|
/external/chromium_org/components/enhanced_bookmarks/ |
metadata_accessor.cc | 52 bool PopulateImageData(const ImageData_ImageInfo& info, 56 if (!info.has_url() || !info.has_width() || !info.has_height()) 59 GURL url(info.url()); 64 *width = info.width(); 65 *height = info.height(); 130 scoped_ptr<ImageData_ImageInfo> info(new ImageData_ImageInfo); 131 info->set_url(url.spec()); 132 info->set_width(width) 226 ImageData_ImageInfo* info = new ImageData_ImageInfo; local 239 ImageData_ImageInfo* info = new ImageData_ImageInfo; local [all...] |
/external/chromium_org/components/nacl/browser/ |
pnacl_host_unittest.cc | 73 base::File::Info info; local 75 EXPECT_TRUE(mutable_file->GetInfo(&info)); 76 EXPECT_FALSE(info.is_directory); 77 EXPECT_EQ(0LL, info.size); 87 base::File::Info info; local 89 EXPECT_TRUE(mutable_file->GetInfo(&info)); 90 EXPECT_FALSE(info.is_directory); 91 EXPECT_EQ(16LL, info.size) 111 nacl::PnaclCacheInfo info; local 134 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 157 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 170 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 183 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 219 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 239 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 256 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 273 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 290 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 309 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 328 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 354 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 372 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 385 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 410 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local [all...] |
/external/chromium_org/components/nacl/loader/nonsfi/ |
nonsfi_main.cc | 46 uintptr_t info[] = { variable 57 entry_point_(info); variable
|
/external/chromium_org/components/storage_monitor/ |
test_volume_mount_watcher_win.cc | 58 StorageInfo* info) { 59 DCHECK(info); 79 *info = StorageInfo(device_id, path.value(), storage_label, base::string16(), 100 StorageInfo info(device_id, device_path.value(), storage_label, 102 HandleDeviceAttachEventOnUIThread(device_path, info); 134 StorageInfo info; local 135 bool success = GetMassStorageDeviceDetails(device_path, &info); 136 *removable = StorageInfo::IsRemovableDevice(info.device_id());
|
/external/chromium_org/content/browser/devtools/ |
devtools_netlog_observer.cc | 82 ResourceInfo* info = GetResourceInfo(entry.source().id); local 83 if (!info) 100 info->request_headers.clear(); 104 info->request_headers.push_back(std::make_pair(it.name(), it.value())); 106 info->request_headers_text = request_line + request_headers.ToString(); 120 info->request_headers.clear(); 124 info->request_headers.push_back(std::make_pair(it->first, it->second)); 126 info->request_headers_text = ""; 139 info->http_status_code = response_headers->response_code(); 140 info->http_status_text = response_headers->GetStatusText() [all...] |
/external/chromium_org/content/browser/gpu/ |
gpu_surface_tracker.cc | 43 const SurfaceInfo& info = it->second; local 44 if (info.renderer_id == renderer_id && 45 info.render_widget_id == render_widget_id) { 74 const SurfaceInfo& info = it->second; local 75 if (!info.handle.is_transport()) 77 *renderer_id = info.renderer_id; 78 *render_widget_id = info.render_widget_id; 86 SurfaceInfo& info = surface_map_[surface_id]; local 87 info.handle = handle; 118 SurfaceInfo& info = it->second local [all...] |
/external/chromium_org/content/browser/loader/ |
certificate_resource_handler.cc | 108 const ResourceRequestInfo* info = GetRequestInfo(); local 111 info->GetChildID(), info->GetRenderFrameID());
|