| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/profiles/profile_io_data.h" | 5 #include "chrome/browser/profiles/profile_io_data.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 context->set_appcache_service(profile_params_->appcache_service); | 538 context->set_appcache_service(profile_params_->appcache_service); |
| 539 context->set_blob_storage_context(profile_params_->blob_storage_context); | 539 context->set_blob_storage_context(profile_params_->blob_storage_context); |
| 540 context->set_file_system_context(profile_params_->file_system_context); | 540 context->set_file_system_context(profile_params_->file_system_context); |
| 541 context->set_extension_info_map(profile_params_->extension_info_map); | 541 context->set_extension_info_map(profile_params_->extension_info_map); |
| 542 } | 542 } |
| 543 | 543 |
| 544 void ProfileIOData::ShutdownOnUIThread() { | 544 void ProfileIOData::ShutdownOnUIThread() { |
| 545 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 545 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 546 enable_referrers_.Destroy(); | 546 enable_referrers_.Destroy(); |
| 547 clear_local_state_on_exit_.Destroy(); | 547 clear_local_state_on_exit_.Destroy(); |
| 548 safe_browsing_enabled_.Destroy(); |
| 548 } | 549 } |
| OLD | NEW |