Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1094)

Unified Diff: net/base/mock_filter_context.h

Issue 8568021: Add OVERRIDE to net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net only Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/listen_socket_unittest.h ('k') | net/base/mock_host_resolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/mock_filter_context.h
diff --git a/net/base/mock_filter_context.h b/net/base/mock_filter_context.h
index e04a551958c18ad587b309eba0cd9f9ecc37b12f..b54e90991ab911cf9caacb81f6b3c719d248578f 100644
--- a/net/base/mock_filter_context.h
+++ b/net/base/mock_filter_context.h
@@ -28,30 +28,30 @@ class MockFilterContext : public FilterContext {
is_sdch_response_ = is_sdch_response;
}
- virtual bool GetMimeType(std::string* mime_type) const;
+ 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;
+ virtual bool GetURL(GURL* gurl) const OVERRIDE;
// What was this data requested from a server?
- virtual base::Time GetRequestTime() const;
+ virtual base::Time GetRequestTime() const OVERRIDE;
// Is data supplied from cache, or fresh across the net?
- virtual bool IsCachedContent() const;
+ virtual bool IsCachedContent() const OVERRIDE;
// Is this a download?
- virtual bool IsDownload() const;
+ virtual bool IsDownload() const OVERRIDE;
// Was this data flagged as a response to a request with an SDCH dictionary?
- virtual bool IsSdchResponse() const;
+ virtual bool IsSdchResponse() const OVERRIDE;
// How many bytes were fed to filter(s) so far?
- virtual int64 GetByteReadCount() const;
+ virtual int64 GetByteReadCount() const OVERRIDE;
- virtual int GetResponseCode() const;
+ virtual int GetResponseCode() const OVERRIDE;
- virtual void RecordPacketStats(StatisticSelector statistic) const {}
+ virtual void RecordPacketStats(StatisticSelector statistic) const OVERRIDE {}
private:
int buffer_size_;
« no previous file with comments | « net/base/listen_socket_unittest.h ('k') | net/base/mock_host_resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698