Index: content/browser/download/download_manager_impl_unittest.cc |
diff --git a/content/browser/download/download_manager_impl_unittest.cc b/content/browser/download/download_manager_impl_unittest.cc |
index f59f2920a3967ea306cc75655302aa7ae626c3ab..6eb272cf4332c9bd21ca37ce0e527da2c5c99a85 100644 |
--- a/content/browser/download/download_manager_impl_unittest.cc |
+++ b/content/browser/download/download_manager_impl_unittest.cc |
@@ -142,7 +142,6 @@ class MockDownloadItemImpl : public DownloadItemImpl { |
MOCK_CONST_METHOD0(GetForcedFilePath, const FilePath&()); |
MOCK_CONST_METHOD0(HasUserGesture, bool()); |
MOCK_CONST_METHOD0(GetTransitionType, content::PageTransition()); |
- MOCK_CONST_METHOD0(IsOtr, bool()); |
MOCK_CONST_METHOD0(IsTemporary, bool()); |
MOCK_METHOD1(SetIsTemporary, void(bool)); |
MOCK_METHOD1(SetOpened, void(bool)); |
@@ -276,13 +275,11 @@ class MockDownloadItemFactory |
DownloadItemImplDelegate* delegate, |
const DownloadCreateInfo& info, |
scoped_ptr<DownloadRequestHandleInterface> request_handle, |
- bool is_otr, |
const net::BoundNetLog& bound_net_log) OVERRIDE; |
virtual DownloadItemImpl* CreateSavePageItem( |
DownloadItemImplDelegate* delegate, |
const FilePath& path, |
const GURL& url, |
- bool is_otr, |
content::DownloadId download_id, |
const std::string& mime_type, |
const net::BoundNetLog& bound_net_log) OVERRIDE; |
@@ -341,7 +338,6 @@ DownloadItemImpl* MockDownloadItemFactory::CreateActiveItem( |
DownloadItemImplDelegate* delegate, |
const DownloadCreateInfo& info, |
scoped_ptr<DownloadRequestHandleInterface> request_handle, |
- bool is_otr, |
const net::BoundNetLog& bound_net_log) { |
int local_id = info.download_id.local(); |
DCHECK(items_.find(local_id) == items_.end()); |
@@ -359,7 +355,6 @@ DownloadItemImpl* MockDownloadItemFactory::CreateSavePageItem( |
DownloadItemImplDelegate* delegate, |
const FilePath& path, |
const GURL& url, |
- bool is_otr, |
content::DownloadId download_id, |
const std::string& mime_type, |
const net::BoundNetLog& bound_net_log) { |