| 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)
|
|
|