| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/public/browser/browser_context.h" | 5 #include "content/public/browser/browser_context.h" |
| 6 | 6 |
| 7 #if !defined(OS_IOS) | 7 #if !defined(OS_IOS) |
| 8 #include "content/browser/download/download_manager_impl.h" | 8 #include "content/browser/download/download_manager_impl.h" |
| 9 #include "content/browser/fileapi/chrome_blob_storage_context.h" | 9 #include "content/browser/fileapi/chrome_blob_storage_context.h" |
| 10 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 10 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 288 |
| 289 #endif // !OS_IOS | 289 #endif // !OS_IOS |
| 290 | 290 |
| 291 BrowserContext::~BrowserContext() { | 291 BrowserContext::~BrowserContext() { |
| 292 #if !defined(OS_IOS) | 292 #if !defined(OS_IOS) |
| 293 if (GetUserData(kDownloadManagerKeyName)) | 293 if (GetUserData(kDownloadManagerKeyName)) |
| 294 GetDownloadManager(this)->Shutdown(); | 294 GetDownloadManager(this)->Shutdown(); |
| 295 #endif | 295 #endif |
| 296 } | 296 } |
| 297 | 297 |
| 298 scoped_ptr<ZoomLevelDelegate> |
| 299 BrowserContext::CreateZoomLevelDelegate() { |
| 300 return scoped_ptr<ZoomLevelDelegate>(); |
| 301 } |
| 302 |
| 298 } // namespace content | 303 } // namespace content |
| OLD | NEW |