HomeSort by relevance Sort by last modified time
    Searched refs:GetTargetFilePath (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/chrome/browser/download/
drag_download_item_views.cc 45 base::FilePath full_path = download->GetTargetFilePath();
download_ui_controller.cc 130 if (item->GetTargetFilePath().empty())
download_query_unittest.cc 188 EXPECT_CALL(mock(0), GetTargetFilePath()).WillRepeatedly(ReturnRef(
191 EXPECT_CALL(mock(1), GetTargetFilePath()).WillRepeatedly(ReturnRef(
209 EXPECT_CALL(mock(0), GetTargetFilePath()).WillRepeatedly(ReturnRef(
211 EXPECT_CALL(mock(1), GetTargetFilePath()).WillRepeatedly(ReturnRef(
237 EXPECT_CALL(mock(0), GetTargetFilePath()).WillRepeatedly(ReturnRef(
240 EXPECT_CALL(mock(1), GetTargetFilePath()).WillRepeatedly(ReturnRef(
254 EXPECT_CALL(mock(0), GetTargetFilePath()).WillRepeatedly(ReturnRef(
257 EXPECT_CALL(mock(1), GetTargetFilePath()).WillRepeatedly(ReturnRef(
266 EXPECT_CALL(mock(0), GetTargetFilePath()).WillRepeatedly(ReturnRef(
269 EXPECT_CALL(mock(1), GetTargetFilePath()).WillRepeatedly(ReturnRef
    [all...]
download_ui_controller_unittest.cc 204 EXPECT_CALL(*item, GetTargetFilePath()).WillRepeatedly(
241 // New downloads should be presented to the UI when GetTargetFilePath() returns
246 EXPECT_CALL(*item, GetTargetFilePath())
257 EXPECT_CALL(*item, GetTargetFilePath())
download_path_reservation_tracker.cc 289 last_target_path_(download_item->GetTargetFilePath()) {
302 base::FilePath new_target_path = download->GetTargetFilePath();
chrome_download_manager_delegate_unittest.cc 218 ON_CALL(*item, GetTargetFilePath())
393 EXPECT_CALL(*download_item, GetTargetFilePath())
398 EXPECT_CALL(*download_item, GetTargetFilePath())
chrome_download_manager_delegate.cc 109 // GetTargetFilePath() refer to this temporary file. This function looks up the
126 return download->GetTargetFilePath();
428 DCHECK(!download->GetTargetFilePath().empty());
450 net::FilePathToFileURL(download->GetTargetFilePath()),
494 base::Bind(&base::PathExists, download->GetTargetFilePath()),
download_shelf_context_menu.cc 172 base::FilePath path = download_item_->GetTargetFilePath();
397 base::FilePath path = download_item_->GetTargetFilePath();
download_path_reservation_tracker_unittest.cc 92 EXPECT_CALL(*item, GetTargetFilePath())
543 ASSERT_EQ(base::FilePath::StringType(), item->GetTargetFilePath().value());
552 EXPECT_CALL(*item, GetTargetFilePath())
download_browsertest.cc     [all...]
download_query.cc 84 base::string16 path(item.GetTargetFilePath().LossyDisplayName());
138 return item.GetTargetFilePath().LossyDisplayName();
download_item_model_unittest.cc 81 ON_CALL(item_, GetTargetFilePath())
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api_browsertest.cc     [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
download_handler.cc 100 if (!drive_tmp_download_path.IsParent(download->GetTargetFilePath()))
253 if (!drive_tmp_download_path_.IsParent(download->GetTargetFilePath()) ||
307 base::Bind(&MoveDownloadedFile, download->GetTargetFilePath(),
  /external/chromium_org/content/browser/android/
download_controller_android_impl.cc 258 env, download_item->GetTargetFilePath().BaseName().value());
275 ConvertUTF8ToJavaString(env, item->GetTargetFilePath().value());
277 env, item->GetTargetFilePath().BaseName().value());
322 env, item->GetTargetFilePath().BaseName().value());
  /external/chromium_org/content/public/browser/
download_item.h 206 // GetTargetFilePath() instead. While the download is in progress, the
216 virtual const base::FilePath& GetTargetFilePath() const = 0;
  /external/chromium_org/content/public/test/
mock_download_item.h 71 MOCK_CONST_METHOD0(GetTargetFilePath, const base::FilePath&());
  /external/chromium_org/chrome/browser/safe_browsing/
download_protection_service.cc 311 *item_, item_->GetTargetFilePath(), &reason, &type_)) {
319 RecordFileExtensionType(item_->GetTargetFilePath());
328 RecordFileExtensionType(item_->GetTargetFilePath());
333 if (item_->GetTargetFilePath().MatchesExtension(
338 item_->GetTargetFilePath()));
417 *item_, item_->GetTargetFilePath())) {
726 item_->GetTargetFilePath().BaseName().AsUTF8Unsafe());
    [all...]
download_protection_service_unittest.cc 386 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_exe));
402 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_exe));
425 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_txt));
457 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_exe));
551 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_exe));
595 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_exe));
749 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_exe));
802 EXPECT_CALL(item, GetTargetFilePath()).WillRepeatedly(ReturnRef(a_zip));
    [all...]
  /external/chromium_org/content/browser/download/
download_item_impl.cc 315 GetTargetFilePath());
402 GetTargetFilePath());
611 const base::FilePath& DownloadItemImpl::GetTargetFilePath() const {
617 // require that clients respect GetTargetFilePath() if it is already set.
752 return delegate_->ShouldOpenFileBasedOnExtension(GetTargetFilePath());
856 GetTargetFilePath().value().c_str());
    [all...]
download_browsertest.cc 836 base::FilePath file1(download1->GetTargetFilePath());
842 base::FilePath file2(download2->GetTargetFilePath());
    [all...]
download_item_impl_unittest.cc 276 EXPECT_TRUE(item->GetTargetFilePath().empty());
809 EXPECT_EQ(final_path, item->GetTargetFilePath());
    [all...]
download_item_impl.h 129 virtual const base::FilePath& GetTargetFilePath() const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/webui/
downloads_dom_handler.cc 136 base::FilePath download_path(download_item->GetTargetFilePath());
244 !item.GetTargetFilePath().empty());
390 file->GetTargetFilePath(), IconLoader::NORMAL);
  /external/chromium_org/chrome/browser/ui/views/download/
download_item_view.cc 441 download()->GetTargetFilePath(), IconLoader::SMALL);
    [all...]

Completed in 791 milliseconds

1 2