OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetFileExternallyRemoved
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/content/public/browser/
download_item.h
236
virtual bool
GetFileExternallyRemoved
() const = 0;
238
// If the file is successfully deleted, then
GetFileExternallyRemoved
() will
240
// nothing if GetState() == COMPLETE or
GetFileExternallyRemoved
() is already
/external/chromium_org/content/public/test/
mock_download_item.h
62
MOCK_CONST_METHOD0(
GetFileExternallyRemoved
, bool());
/external/chromium_org/chrome/browser/download/
download_query_unittest.cc
367
EXPECT_CALL(mock(0),
GetFileExternallyRemoved
()).WillRepeatedly(Return(
369
EXPECT_CALL(mock(1),
GetFileExternallyRemoved
()).WillRepeatedly(Return(
377
EXPECT_CALL(mock(0),
GetFileExternallyRemoved
()).WillRepeatedly(Return(
379
EXPECT_CALL(mock(1),
GetFileExternallyRemoved
()).WillRepeatedly(Return(
download_item_model_unittest.cc
74
ON_CALL(item_,
GetFileExternallyRemoved
()).WillByDefault(Return(false));
download_item_model.cc
260
if (download_->
GetFileExternallyRemoved
()) {
download_query.cc
132
return !item.
GetFileExternallyRemoved
();
/external/chromium_org/content/browser/download/
download_item_impl.h
131
virtual bool
GetFileExternallyRemoved
() const OVERRIDE;
download_manager_impl.cc
460
!download_item->
GetFileExternallyRemoved
() &&
download_manager_impl_unittest.cc
152
MOCK_CONST_METHOD0(
GetFileExternallyRemoved
, bool());
download_item_impl_unittest.cc
[
all
...]
download_item_impl.cc
611
bool DownloadItemImpl::
GetFileExternallyRemoved
() const {
[
all
...]
/external/chromium_org/chrome/browser/ui/webui/
downloads_dom_handler.cc
163
download_item->
GetFileExternallyRemoved
());
/external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.cc
245
json->SetBoolean(kExistsKey, !download_item->
GetFileExternallyRemoved
());
[
all
...]
Completed in 402 milliseconds