| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/browser/shell_content_browser_client.h" | 5 #include "content/shell/browser/shell_content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| 11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 13 #include "content/public/browser/render_process_host.h" | 13 #include "content/public/browser/render_process_host.h" |
| 14 #include "content/public/browser/resource_dispatcher_host.h" | 14 #include "content/public/browser/resource_dispatcher_host.h" |
| 15 #include "content/public/browser/storage_partition.h" | 15 #include "content/public/browser/storage_partition.h" |
| 16 #include "content/public/common/content_switches.h" | 16 #include "content/public/common/content_switches.h" |
| 17 #include "content/public/common/url_constants.h" | 17 #include "content/public/common/url_constants.h" |
| 18 #include "content/public/common/web_preferences.h" |
| 18 #include "content/shell/browser/shell.h" | 19 #include "content/shell/browser/shell.h" |
| 19 #include "content/shell/browser/shell_browser_context.h" | 20 #include "content/shell/browser/shell_browser_context.h" |
| 20 #include "content/shell/browser/shell_browser_main_parts.h" | 21 #include "content/shell/browser/shell_browser_main_parts.h" |
| 21 #include "content/shell/browser/shell_devtools_delegate.h" | 22 #include "content/shell/browser/shell_devtools_delegate.h" |
| 22 #include "content/shell/browser/shell_message_filter.h" | 23 #include "content/shell/browser/shell_message_filter.h" |
| 23 #include "content/shell/browser/shell_net_log.h" | 24 #include "content/shell/browser/shell_net_log.h" |
| 24 #include "content/shell/browser/shell_quota_permission_context.h" | 25 #include "content/shell/browser/shell_quota_permission_context.h" |
| 25 #include "content/shell/browser/shell_resource_dispatcher_host_delegate.h" | 26 #include "content/shell/browser/shell_resource_dispatcher_host_delegate.h" |
| 26 #include "content/shell/browser/shell_web_contents_view_delegate_creator.h" | 27 #include "content/shell/browser/shell_web_contents_view_delegate_creator.h" |
| 27 #include "content/shell/browser/webkit_test_controller.h" | 28 #include "content/shell/browser/webkit_test_controller.h" |
| 28 #include "content/shell/common/shell_messages.h" | 29 #include "content/shell/common/shell_messages.h" |
| 29 #include "content/shell/common/shell_switches.h" | 30 #include "content/shell/common/shell_switches.h" |
| 30 #include "content/shell/common/webkit_test_helpers.h" | 31 #include "content/shell/common/webkit_test_helpers.h" |
| 31 #include "content/shell/geolocation/shell_access_token_store.h" | 32 #include "content/shell/geolocation/shell_access_token_store.h" |
| 32 #include "net/url_request/url_request_context_getter.h" | 33 #include "net/url_request/url_request_context_getter.h" |
| 33 #include "url/gurl.h" | 34 #include "url/gurl.h" |
| 34 #include "webkit/common/webpreferences.h" | |
| 35 | 35 |
| 36 #if defined(OS_ANDROID) | 36 #if defined(OS_ANDROID) |
| 37 #include "base/android/path_utils.h" | 37 #include "base/android/path_utils.h" |
| 38 #include "base/path_service.h" | 38 #include "base/path_service.h" |
| 39 #include "components/breakpad/browser/crash_dump_manager_android.h" | 39 #include "components/breakpad/browser/crash_dump_manager_android.h" |
| 40 #include "content/shell/android/shell_descriptors.h" | 40 #include "content/shell/android/shell_descriptors.h" |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 43 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 44 #include "base/debug/leak_annotations.h" | 44 #include "base/debug/leak_annotations.h" |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 ShellBrowserContext* | 364 ShellBrowserContext* |
| 365 ShellContentBrowserClient::ShellBrowserContextForBrowserContext( | 365 ShellContentBrowserClient::ShellBrowserContextForBrowserContext( |
| 366 BrowserContext* content_browser_context) { | 366 BrowserContext* content_browser_context) { |
| 367 if (content_browser_context == browser_context()) | 367 if (content_browser_context == browser_context()) |
| 368 return browser_context(); | 368 return browser_context(); |
| 369 DCHECK_EQ(content_browser_context, off_the_record_browser_context()); | 369 DCHECK_EQ(content_browser_context, off_the_record_browser_context()); |
| 370 return off_the_record_browser_context(); | 370 return off_the_record_browser_context(); |
| 371 } | 371 } |
| 372 | 372 |
| 373 } // namespace content | 373 } // namespace content |
| OLD | NEW |