Home | History | Annotate | Download | only in support

Lines Matching defs:file_path

29   base::FilePath file_path;
38 const WebString& file_path) {
41 if (!file_path.isNull() && !file_path.isEmpty()) {
44 response_info.file_path =
45 base::FilePath(static_cast<std::string>(file_path.utf8()));
47 string16 file_path_16 = file_path;
48 response_info.file_path = base::FilePath(std::wstring(
51 DCHECK(base::PathExists(response_info.file_path))
52 << response_info.file_path.MaybeAsASCII() << " does not exist.";
167 if (!error->reason && !ReadFile(iter->second.file_path, data)) {
181 bool WebURLLoaderMockFactory::ReadFile(const base::FilePath& file_path,
184 if (!file_util::GetFileSize(file_path, &file_size))
190 int read_count = file_util::ReadFile(file_path, buffer.get(), size);