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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate_unittest.cc

Issue 824513003: Standardize usage of virtual/override/final specifiers in components/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify Created 6 years 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
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate_unittest.cc
index b57ad13a0caa50f744eaa0ed7a7c3d2a6d84bb52..6b5a561d5b58812efaa7cd987fa780947bd8b984 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate_unittest.cc
@@ -26,14 +26,7 @@
namespace data_reduction_proxy {
namespace {
-class TestNetworkDelegate : public net::NetworkDelegateImpl {
- public:
- TestNetworkDelegate() {
- }
-
- virtual ~TestNetworkDelegate() {
- }
-};
+typedef net::NetworkDelegateImpl TestNetworkDelegate;
Nico 2014/12/29 22:17:40 using TestNetworkDelegate = net::NetworkDelegateIm
dcheng 2014/12/29 23:39:28 Done.
const char kChromeProxyHeader[] = "chrome-proxy";

Powered by Google App Engine
This is Rietveld 408576698