Index: net/filter/mock_filter_context.h |
diff --git a/net/filter/mock_filter_context.h b/net/filter/mock_filter_context.h |
index a68f4567bf52b63d6c5742c0b42c649f3a286f1e..bdef81291fdd355ac36443f2ae166339df419a1e 100644 |
--- a/net/filter/mock_filter_context.h |
+++ b/net/filter/mock_filter_context.h |
@@ -41,37 +41,37 @@ class MockFilterContext : public FilterContext { |
// of those interfaces as coding errors. |
void NukeUnstableInterfaces(); |
- virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; |
+ virtual bool GetMimeType(std::string* mime_type) const override; |
// What URL was used to access this data? |
// Return false if gurl is not present. |
- virtual bool GetURL(GURL* gurl) const OVERRIDE; |
+ virtual bool GetURL(GURL* gurl) const override; |
// What Content-Disposition did the server supply for this data? |
// Return false if Content-Disposition was not present. |
- virtual bool GetContentDisposition(std::string* disposition) const OVERRIDE; |
+ virtual bool GetContentDisposition(std::string* disposition) const override; |
// What was this data requested from a server? |
- virtual base::Time GetRequestTime() const OVERRIDE; |
+ virtual base::Time GetRequestTime() const override; |
// Is data supplied from cache, or fresh across the net? |
- virtual bool IsCachedContent() const OVERRIDE; |
+ virtual bool IsCachedContent() const override; |
// Is this a download? |
- virtual bool IsDownload() const OVERRIDE; |
+ virtual bool IsDownload() const override; |
// Was this data flagged as a response to a request with an SDCH dictionary? |
- virtual bool SdchResponseExpected() const OVERRIDE; |
+ virtual bool SdchResponseExpected() const override; |
// How many bytes were fed to filter(s) so far? |
- virtual int64 GetByteReadCount() const OVERRIDE; |
+ virtual int64 GetByteReadCount() const override; |
- virtual int GetResponseCode() const OVERRIDE; |
+ virtual int GetResponseCode() const override; |
// The URLRequestContext associated with the request. |
- virtual const URLRequestContext* GetURLRequestContext() const OVERRIDE; |
+ virtual const URLRequestContext* GetURLRequestContext() const override; |
- virtual void RecordPacketStats(StatisticSelector statistic) const OVERRIDE {} |
+ virtual void RecordPacketStats(StatisticSelector statistic) const override {} |
private: |
int buffer_size_; |