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/layout_test/layout_test_browser_main_parts.h" | 5 #include "content/shell/browser/layout_test/layout_test_browser_main_parts.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
13 #include "base/threading/thread_restrictions.h" | 13 #include "base/threading/thread_restrictions.h" |
| 14 #include "build/build_config.h" |
14 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
15 #include "content/public/browser/storage_partition.h" | 16 #include "content/public/browser/storage_partition.h" |
16 #include "content/public/common/content_switches.h" | 17 #include "content/public/common/content_switches.h" |
17 #include "content/public/common/main_function_params.h" | 18 #include "content/public/common/main_function_params.h" |
18 #include "content/public/common/url_constants.h" | 19 #include "content/public/common/url_constants.h" |
19 #include "content/shell/browser/layout_test/layout_test_browser_context.h" | 20 #include "content/shell/browser/layout_test/layout_test_browser_context.h" |
20 #include "content/shell/browser/shell.h" | 21 #include "content/shell/browser/shell.h" |
21 #include "content/shell/browser/shell_browser_context.h" | 22 #include "content/shell/browser/shell_browser_context.h" |
22 #include "content/shell/browser/shell_devtools_manager_delegate.h" | 23 #include "content/shell/browser/shell_devtools_manager_delegate.h" |
23 #include "content/shell/browser/shell_net_log.h" | 24 #include "content/shell/browser/shell_net_log.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 storage::QuotaCallback())); | 84 storage::QuotaCallback())); |
84 | 85 |
85 #if defined(ENABLE_PLUGINS) | 86 #if defined(ENABLE_PLUGINS) |
86 PluginService* plugin_service = PluginService::GetInstance(); | 87 PluginService* plugin_service = PluginService::GetInstance(); |
87 plugin_service_filter_.reset(new ShellPluginServiceFilter); | 88 plugin_service_filter_.reset(new ShellPluginServiceFilter); |
88 plugin_service->SetFilter(plugin_service_filter_.get()); | 89 plugin_service->SetFilter(plugin_service_filter_.get()); |
89 #endif | 90 #endif |
90 } | 91 } |
91 | 92 |
92 } // namespace | 93 } // namespace |
OLD | NEW |