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

Unified Diff: net/proxy/dhcp_proxy_script_fetcher_win.cc

Issue 1120203004: win: Ref-counted classes should have non-public destructors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
Index: net/proxy/dhcp_proxy_script_fetcher_win.cc
diff --git a/net/proxy/dhcp_proxy_script_fetcher_win.cc b/net/proxy/dhcp_proxy_script_fetcher_win.cc
index 7147d678118470399e8c479d87d40399d129acc6..5d1c37d8d4f8a6c436142db57dfbb770527ea21b 100644
--- a/net/proxy/dhcp_proxy_script_fetcher_win.cc
+++ b/net/proxy/dhcp_proxy_script_fetcher_win.cc
@@ -350,9 +350,6 @@ bool DhcpProxyScriptFetcherWin::GetCandidateAdapterNames(
DhcpProxyScriptFetcherWin::AdapterQuery::AdapterQuery() {
}
-DhcpProxyScriptFetcherWin::AdapterQuery::~AdapterQuery() {
-}
-
void DhcpProxyScriptFetcherWin::AdapterQuery::GetCandidateAdapterNames() {
// TODO(pkasting): Remove ScopedTracker below once crbug.com/476182 is fixed.
tracked_objects::ScopedTracker tracking_profile(
@@ -373,4 +370,7 @@ bool DhcpProxyScriptFetcherWin::AdapterQuery::ImplGetCandidateAdapterNames(
return DhcpProxyScriptFetcherWin::GetCandidateAdapterNames(adapter_names);
}
+DhcpProxyScriptFetcherWin::AdapterQuery::~AdapterQuery() {
+}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698