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/shell/shell_browser_context.h" | 5 #include "content/shell/shell_browser_context.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/environment.h" | 8 #include "base/environment.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
13 #include "content/browser/download/download_manager_impl.h" | 13 #include "content/browser/download/download_manager_impl.h" |
14 #include "content/browser/in_process_webkit/webkit_context.h" | |
15 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
16 #include "content/public/browser/geolocation_permission_context.h" | 15 #include "content/public/browser/geolocation_permission_context.h" |
17 #include "content/public/browser/speech_input_preferences.h" | 16 #include "content/public/browser/speech_input_preferences.h" |
18 #include "content/shell/shell_browser_main.h" | 17 #include "content/shell/shell_browser_main.h" |
19 #include "content/shell/shell_download_manager_delegate.h" | 18 #include "content/shell/shell_download_manager_delegate.h" |
20 #include "content/shell/shell_resource_context.h" | 19 #include "content/shell/shell_resource_context.h" |
21 #include "content/shell/shell_url_request_context_getter.h" | 20 #include "content/shell/shell_url_request_context_getter.h" |
22 | 21 |
23 #if defined(OS_WIN) | 22 #if defined(OS_WIN) |
24 #include "base/base_paths_win.h" | 23 #include "base/base_paths_win.h" |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 | 178 |
180 bool ShellBrowserContext::DidLastSessionExitCleanly() { | 179 bool ShellBrowserContext::DidLastSessionExitCleanly() { |
181 return true; | 180 return true; |
182 } | 181 } |
183 | 182 |
184 quota::SpecialStoragePolicy* ShellBrowserContext::GetSpecialStoragePolicy() { | 183 quota::SpecialStoragePolicy* ShellBrowserContext::GetSpecialStoragePolicy() { |
185 return NULL; | 184 return NULL; |
186 } | 185 } |
187 | 186 |
188 } // namespace content | 187 } // namespace content |
OLD | NEW |