HomeSort by relevance Sort by last modified time
    Searched refs:GetFileExternallyRemoved (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/content/public/browser/
download_item.h 238 virtual bool GetFileExternallyRemoved() const = 0;
240 // If the file is successfully deleted, then GetFileExternallyRemoved() will
243 // GetState() == COMPLETE or GetFileExternallyRemoved() is already true or
247 // GetFileExternallyRemoved() was already true. The callback will be passed
  /external/chromium_org/content/public/test/
mock_download_item.h 77 MOCK_CONST_METHOD0(GetFileExternallyRemoved, bool());
  /external/chromium_org/chrome/browser/download/
download_query_unittest.cc 363 EXPECT_CALL(mock(0), GetFileExternallyRemoved()).WillRepeatedly(Return(
365 EXPECT_CALL(mock(1), GetFileExternallyRemoved()).WillRepeatedly(Return(
373 EXPECT_CALL(mock(0), GetFileExternallyRemoved()).WillRepeatedly(Return(
375 EXPECT_CALL(mock(1), GetFileExternallyRemoved()).WillRepeatedly(Return(
download_item_model_unittest.cc 74 ON_CALL(item_, GetFileExternallyRemoved()).WillByDefault(Return(false));
download_query.cc 132 return !item.GetFileExternallyRemoved();
download_item_model.cc 284 if (download_->GetFileExternallyRemoved()) {
  /external/chromium_org/content/browser/download/
download_item_impl.h 135 virtual bool GetFileExternallyRemoved() const OVERRIDE;
download_manager_impl.cc 459 !download_item->GetFileExternallyRemoved() &&
download_manager_impl_unittest.cc 156 MOCK_CONST_METHOD0(GetFileExternallyRemoved, bool());
download_item_impl_unittest.cc     [all...]
download_item_impl.cc 639 bool DownloadItemImpl::GetFileExternallyRemoved() const {
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
downloads_dom_handler.cc 167 download_item->GetFileExternallyRemoved());
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.cc 244 json->SetBoolean(kExistsKey, !download_item->GetFileExternallyRemoved());
    [all...]

Completed in 4697 milliseconds