OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AttachmentDownloader
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/sync/internal_api/attachments/
attachment_downloader.cc
11
AttachmentDownloader
::~
AttachmentDownloader
() {
17
scoped_ptr<
AttachmentDownloader
>
AttachmentDownloader
::Create(
25
return scoped_ptr<
AttachmentDownloader
>(
fake_attachment_downloader_unittest.cc
23
AttachmentDownloader
* downloader() {
27
AttachmentDownloader
::DownloadCallback download_callback() {
32
const std::vector<
AttachmentDownloader
::DownloadResult>& download_results() {
42
void DownloadDone(const
AttachmentDownloader
::DownloadResult& result,
49
std::vector<
AttachmentDownloader
::DownloadResult> download_results_;
57
EXPECT_EQ(
AttachmentDownloader
::DOWNLOAD_SUCCESS, download_results()[0]);
attachment_downloader_impl_unittest.cc
138
typedef std::map<AttachmentId,
AttachmentDownloader
::DownloadResult>
146
AttachmentDownloader
* downloader() { return attachment_downloader_.get(); }
152
AttachmentDownloader
::DownloadCallback download_callback(
162
const
AttachmentDownloader
::DownloadResult& result,
166
const
AttachmentDownloader
::DownloadResult& result);
175
scoped_ptr<
AttachmentDownloader
> attachment_downloader_;
192
AttachmentDownloader
::Create(GURL(kAttachmentServerUrl),
224
const
AttachmentDownloader
::DownloadResult& result,
227
if (result ==
AttachmentDownloader
::DOWNLOAD_SUCCESS) {
244
const
AttachmentDownloader
::DownloadResult& result)
[
all
...]
attachment_service_impl.cc
116
scoped_ptr<
AttachmentDownloader
> attachment_downloader,
152
scoped_ptr<
AttachmentDownloader
> attachment_downloader(
259
const
AttachmentDownloader
::DownloadResult& result,
262
case
AttachmentDownloader
::DOWNLOAD_SUCCESS:
265
case
AttachmentDownloader
::DOWNLOAD_TRANSIENT_ERROR:
266
case
AttachmentDownloader
::DOWNLOAD_UNSPECIFIED_ERROR:
attachment_service_impl_unittest.cc
95
: public
AttachmentDownloader
,
195
downloader.PassAs<
AttachmentDownloader
>(),
328
AttachmentDownloader
::DOWNLOAD_SUCCESS);
335
attachment_ids[2],
AttachmentDownloader
::DOWNLOAD_UNSPECIFIED_ERROR);
/external/chromium_org/sync/internal_api/public/attachments/
attachment_downloader.h
20
//
AttachmentDownloader
is responsible for downloading attachments from server.
21
class SYNC_EXPORT
AttachmentDownloader
{
34
virtual ~
AttachmentDownloader
();
54
static scoped_ptr<
AttachmentDownloader
> Create(
fake_attachment_downloader.h
15
class SYNC_EXPORT FakeAttachmentDownloader : public
AttachmentDownloader
,
21
//
AttachmentDownloader
implementation.
attachment_service_impl.h
52
scoped_ptr<
AttachmentDownloader
> attachment_downloader,
93
const
AttachmentDownloader
::DownloadResult& result,
107
const scoped_ptr<
AttachmentDownloader
> attachment_downloader_;
attachment_downloader_impl.h
18
// An implementation of
AttachmentDownloader
.
19
class AttachmentDownloaderImpl : public
AttachmentDownloader
,
43
//
AttachmentDownloader
implementation.
/external/chromium_org/chrome/browser/sync/
profile_sync_components_factory_impl.cc
613
scoped_ptr<syncer::
AttachmentDownloader
> attachment_downloader;
625
// AttachmentUploader and
AttachmentDownloader
instead of creating a new one
638
attachment_downloader = syncer::
AttachmentDownloader
::Create(
/external/chromium_org/components/sync_driver/
generic_change_processor_unittest.cc
56
scoped_ptr<syncer::
AttachmentDownloader
>(
Completed in 88 milliseconds