| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "content/shell/browser/shell.h" | 30 #include "content/shell/browser/shell.h" |
| 31 #include "content/shell/browser/shell_browser_context.h" | 31 #include "content/shell/browser/shell_browser_context.h" |
| 32 #include "content/shell/browser/shell_browser_main_parts.h" | 32 #include "content/shell/browser/shell_browser_main_parts.h" |
| 33 #include "content/shell/browser/shell_devtools_manager_delegate.h" | 33 #include "content/shell/browser/shell_devtools_manager_delegate.h" |
| 34 #include "content/shell/browser/shell_net_log.h" | 34 #include "content/shell/browser/shell_net_log.h" |
| 35 #include "content/shell/browser/shell_quota_permission_context.h" | 35 #include "content/shell/browser/shell_quota_permission_context.h" |
| 36 #include "content/shell/browser/shell_resource_dispatcher_host_delegate.h" | 36 #include "content/shell/browser/shell_resource_dispatcher_host_delegate.h" |
| 37 #include "content/shell/browser/shell_web_contents_view_delegate_creator.h" | 37 #include "content/shell/browser/shell_web_contents_view_delegate_creator.h" |
| 38 #include "content/shell/common/shell_messages.h" | 38 #include "content/shell/common/shell_messages.h" |
| 39 #include "content/shell/common/shell_switches.h" | 39 #include "content/shell/common/shell_switches.h" |
| 40 #include "grit/shell_resources.h" | 40 #include "content/shell/grit/shell_resources.h" |
| 41 #include "net/url_request/url_request_context_getter.h" | 41 #include "net/url_request/url_request_context_getter.h" |
| 42 #include "storage/browser/quota/quota_settings.h" | 42 #include "storage/browser/quota/quota_settings.h" |
| 43 #include "ui/base/resource/resource_bundle.h" | 43 #include "ui/base/resource/resource_bundle.h" |
| 44 #include "url/gurl.h" | 44 #include "url/gurl.h" |
| 45 #include "url/origin.h" | 45 #include "url/origin.h" |
| 46 | 46 |
| 47 #if defined(OS_ANDROID) | 47 #if defined(OS_ANDROID) |
| 48 #include "base/android/apk_assets.h" | 48 #include "base/android/apk_assets.h" |
| 49 #include "base/android/path_utils.h" | 49 #include "base/android/path_utils.h" |
| 50 #include "components/crash/content/browser/crash_dump_manager_android.h" | 50 #include "components/crash/content/browser/crash_dump_manager_android.h" |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 ShellBrowserContext* ShellContentBrowserClient::browser_context() { | 380 ShellBrowserContext* ShellContentBrowserClient::browser_context() { |
| 381 return shell_browser_main_parts_->browser_context(); | 381 return shell_browser_main_parts_->browser_context(); |
| 382 } | 382 } |
| 383 | 383 |
| 384 ShellBrowserContext* | 384 ShellBrowserContext* |
| 385 ShellContentBrowserClient::off_the_record_browser_context() { | 385 ShellContentBrowserClient::off_the_record_browser_context() { |
| 386 return shell_browser_main_parts_->off_the_record_browser_context(); | 386 return shell_browser_main_parts_->off_the_record_browser_context(); |
| 387 } | 387 } |
| 388 | 388 |
| 389 } // namespace content | 389 } // namespace content |
| OLD | NEW |