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

Unified Diff: net/proxy/dhcp_proxy_script_fetcher.cc

Issue 10407060: RefCounted types should not have public destructors, net/ redux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months 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 | « no previous file | net/proxy/proxy_script_decider_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/dhcp_proxy_script_fetcher.cc
diff --git a/net/proxy/dhcp_proxy_script_fetcher.cc b/net/proxy/dhcp_proxy_script_fetcher.cc
index a13c1c4c34b1008ce2c64792ed31d1c5a4be7f88..9ce70b8f0783376191f447eace468c1f7e97ac52 100644
--- a/net/proxy/dhcp_proxy_script_fetcher.cc
+++ b/net/proxy/dhcp_proxy_script_fetcher.cc
@@ -8,29 +8,24 @@
namespace net {
-DhcpProxyScriptFetcher::DhcpProxyScriptFetcher() {
-}
-
-DhcpProxyScriptFetcher::~DhcpProxyScriptFetcher() {
-}
-
std::string DhcpProxyScriptFetcher::GetFetcherName() const {
return "";
}
-DoNothingDhcpProxyScriptFetcher::DoNothingDhcpProxyScriptFetcher() {
-}
+DhcpProxyScriptFetcher::DhcpProxyScriptFetcher() {}
-DoNothingDhcpProxyScriptFetcher::~DoNothingDhcpProxyScriptFetcher() {
-}
+DhcpProxyScriptFetcher::~DhcpProxyScriptFetcher() {}
+
+DoNothingDhcpProxyScriptFetcher::DoNothingDhcpProxyScriptFetcher() {}
+
+DoNothingDhcpProxyScriptFetcher::~DoNothingDhcpProxyScriptFetcher() {}
int DoNothingDhcpProxyScriptFetcher::Fetch(
string16* utf16_text, const CompletionCallback& callback) {
return ERR_NOT_IMPLEMENTED;
}
-void DoNothingDhcpProxyScriptFetcher::Cancel() {
-}
+void DoNothingDhcpProxyScriptFetcher::Cancel() {}
const GURL& DoNothingDhcpProxyScriptFetcher::GetPacURL() const {
return gurl_;
« no previous file with comments | « no previous file | net/proxy/proxy_script_decider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698