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 "content/shell/shell_browser_context.h" | 5 #include "content/shell/shell_browser_context.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "content/browser/appcache/chrome_appcache_service.h" | 10 #include "content/browser/appcache/chrome_appcache_service.h" |
11 #include "content/browser/browser_thread.h" | |
12 #include "content/browser/chrome_blob_storage_context.h" | 11 #include "content/browser/chrome_blob_storage_context.h" |
13 #include "content/browser/download/download_manager.h" | 12 #include "content/browser/download/download_manager.h" |
14 #include "content/browser/download/download_status_updater.h" | 13 #include "content/browser/download/download_status_updater.h" |
15 #include "content/browser/file_system/browser_file_system_helper.h" | 14 #include "content/browser/file_system/browser_file_system_helper.h" |
16 #include "content/browser/geolocation/geolocation_permission_context.h" | 15 #include "content/browser/geolocation/geolocation_permission_context.h" |
17 #include "content/browser/host_zoom_map.h" | 16 #include "content/browser/host_zoom_map.h" |
18 #include "content/browser/in_process_webkit/webkit_context.h" | 17 #include "content/browser/in_process_webkit/webkit_context.h" |
| 18 #include "content/browser/speech/speech_input_preferences.h" |
19 #include "content/browser/ssl/ssl_host_state.h" | 19 #include "content/browser/ssl/ssl_host_state.h" |
20 #include "content/browser/speech/speech_input_preferences.h" | 20 #include "content/public/browser/browser_thread.h" |
21 #include "content/shell/shell_browser_main.h" | 21 #include "content/shell/shell_browser_main.h" |
22 #include "content/shell/shell_download_manager_delegate.h" | 22 #include "content/shell/shell_download_manager_delegate.h" |
23 #include "content/shell/shell_resource_context.h" | 23 #include "content/shell/shell_resource_context.h" |
24 #include "content/shell/shell_url_request_context_getter.h" | 24 #include "content/shell/shell_url_request_context_getter.h" |
25 #include "webkit/database/database_tracker.h" | 25 #include "webkit/database/database_tracker.h" |
26 #include "webkit/quota/quota_manager.h" | 26 #include "webkit/quota/quota_manager.h" |
27 | 27 |
28 #if defined(OS_WIN) | 28 #if defined(OS_WIN) |
29 #include "base/base_paths_win.h" | 29 #include "base/base_paths_win.h" |
30 #endif | 30 #endif |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 NewRunnableMethod( | 248 NewRunnableMethod( |
249 appcache_service_.get(), | 249 appcache_service_.get(), |
250 &ChromeAppCacheService::InitializeOnIOThread, | 250 &ChromeAppCacheService::InitializeOnIOThread, |
251 IsOffTheRecord() | 251 IsOffTheRecord() |
252 ? FilePath() : GetPath().Append(FILE_PATH_LITERAL("AppCache")), | 252 ? FilePath() : GetPath().Append(FILE_PATH_LITERAL("AppCache")), |
253 &GetResourceContext(), | 253 &GetResourceContext(), |
254 special_storage_policy)); | 254 special_storage_policy)); |
255 } | 255 } |
256 | 256 |
257 } // namespace content | 257 } // namespace content |
OLD | NEW |