| Index: sync/internal_api/public/attachments/attachment_downloader_impl.h
|
| diff --git a/sync/internal_api/public/attachments/attachment_downloader_impl.h b/sync/internal_api/public/attachments/attachment_downloader_impl.h
|
| index 5a8a5c1f311f036ce6e76f3d67cb53e442344b54..363d805a9d226b94994fbd797076272ca0557255 100644
|
| --- a/sync/internal_api/public/attachments/attachment_downloader_impl.h
|
| +++ b/sync/internal_api/public/attachments/attachment_downloader_impl.h
|
| @@ -42,21 +42,21 @@ class AttachmentDownloaderImpl : public AttachmentDownloader,
|
| const OAuth2TokenService::ScopeSet& scopes,
|
| const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>&
|
| token_service_provider);
|
| - virtual ~AttachmentDownloaderImpl();
|
| + ~AttachmentDownloaderImpl() override;
|
|
|
| // AttachmentDownloader implementation.
|
| - virtual void DownloadAttachment(const AttachmentId& attachment_id,
|
| - const DownloadCallback& callback) override;
|
| + void DownloadAttachment(const AttachmentId& attachment_id,
|
| + const DownloadCallback& callback) override;
|
|
|
| // OAuth2TokenService::Consumer implementation.
|
| - virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
|
| - const std::string& access_token,
|
| - const base::Time& expiration_time) override;
|
| - virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request,
|
| - const GoogleServiceAuthError& error) override;
|
| + void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
|
| + const std::string& access_token,
|
| + const base::Time& expiration_time) override;
|
| + void OnGetTokenFailure(const OAuth2TokenService::Request* request,
|
| + const GoogleServiceAuthError& error) override;
|
|
|
| // net::URLFetcherDelegate implementation.
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(AttachmentDownloaderImplTest, ExtractCrc32c_First);
|
|
|