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

Unified Diff: chrome/common/net/url_fetcher_protect.h

Issue 3522004: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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: chrome/common/net/url_fetcher_protect.h
diff --git a/chrome/common/net/url_fetcher_protect.h b/chrome/common/net/url_fetcher_protect.h
index 980353cc73517727143ef859673beb14e15a6671..6372640f192edd5c3df36b40ebfe39ae2dc9cc70 100644
--- a/chrome/common/net/url_fetcher_protect.h
+++ b/chrome/common/net/url_fetcher_protect.h
@@ -48,7 +48,7 @@ class URLFetcherProtectEntry {
int maximum_timeout);
- virtual ~URLFetcherProtectEntry() { }
+ virtual ~URLFetcherProtectEntry();
// When a connection event happens, log it to the queue, and recalculate
// the timeout period. It returns the backoff time, in milliseconds, that
@@ -138,7 +138,7 @@ class URLFetcherProtectManager {
URLFetcherProtectEntry* entry);
private:
- URLFetcherProtectManager() { }
+ URLFetcherProtectManager();
typedef std::map<const std::string, URLFetcherProtectEntry*> ProtectService;

Powered by Google App Engine
This is Rietveld 408576698