Home | History | Annotate | Download | only in download

Lines Matching full:filepath

33     FilePath path(extensions[i]);
35 FilePath path(UTF8ToWide(extensions[i]));
55 const FilePath& default_download_path =
71 FilePath current_download_dir = prefs->GetFilePath(
94 const FilePath::StringType& extension) const {
98 bool DownloadPrefs::EnableAutoOpenBasedOnExtension(const FilePath& file_name) {
99 FilePath::StringType extension = file_name.Extension();
102 DCHECK(extension[0] == FilePath::kExtensionSeparator);
110 void DownloadPrefs::DisableAutoOpenBasedOnExtension(const FilePath& file_name) {
111 FilePath::StringType extension = file_name.Extension();
114 DCHECK(extension[0] == FilePath::kExtensionSeparator);
149 const FilePath::StringType& a,
150 const FilePath::StringType& b) const {
151 return FilePath::CompareLessIgnoreCase(a, b);