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

Unified Diff: chrome/browser/profiles/profile_io_data.cc

Issue 10068036: RefCounted types should not have public destructors, chrome/browser/ part 5 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win fix Created 8 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: chrome/browser/profiles/profile_io_data.cc
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
index 6821a5fe2da6e7a51759047554cb88dd1e6b217d..78ebb1d7d75df7564354ae37d9097f70ce28ad7a 100644
--- a/chrome/browser/profiles/profile_io_data.cc
+++ b/chrome/browser/profiles/profile_io_data.cc
@@ -232,7 +232,6 @@ void ProfileIOData::InitializeOnUIThread(Profile* profile) {
}
ProfileIOData::AppRequestContext::AppRequestContext() {}
-ProfileIOData::AppRequestContext::~AppRequestContext() {}
void ProfileIOData::AppRequestContext::SetCookieStore(
net::CookieStore* cookie_store) {
@@ -246,6 +245,8 @@ void ProfileIOData::AppRequestContext::SetHttpTransactionFactory(
set_http_transaction_factory(http_factory);
}
+ProfileIOData::AppRequestContext::~AppRequestContext() {}
+
ProfileIOData::ProfileParams::ProfileParams()
: is_incognito(false),
clear_local_state_on_exit(false),
@@ -253,7 +254,9 @@ ProfileIOData::ProfileParams::ProfileParams()
#if defined(ENABLE_NOTIFICATIONS)
notification_service(NULL),
#endif
- profile(NULL) {}
+ profile(NULL) {
+}
+
ProfileIOData::ProfileParams::~ProfileParams() {}
ProfileIOData::ProfileIOData(bool is_incognito)
« no previous file with comments | « chrome/browser/profiles/profile_io_data.h ('k') | chrome/browser/profiles/refcounted_profile_keyed_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698