| 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/browser/plugin_service_impl.h" | 5 #include "content/browser/plugin_service_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/bind.h" | 9 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 9 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 10 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 11 #include "base/location.h" | 13 #include "base/location.h" |
| 12 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram.h" |
| 13 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 14 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 16 #include "base/synchronization/waitable_event.h" | 18 #include "base/synchronization/waitable_event.h" |
| 17 #include "base/threading/thread.h" | 19 #include "base/threading/thread.h" |
| 20 #include "build/build_config.h" |
| 18 #include "content/browser/ppapi_plugin_process_host.h" | 21 #include "content/browser/ppapi_plugin_process_host.h" |
| 19 #include "content/browser/renderer_host/render_process_host_impl.h" | 22 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 20 #include "content/browser/renderer_host/render_view_host_impl.h" | 23 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 21 #include "content/common/content_switches_internal.h" | 24 #include "content/common/content_switches_internal.h" |
| 22 #include "content/common/pepper_plugin_list.h" | 25 #include "content/common/pepper_plugin_list.h" |
| 23 #include "content/common/plugin_list.h" | 26 #include "content/common/plugin_list.h" |
| 24 #include "content/common/view_messages.h" | 27 #include "content/common/view_messages.h" |
| 25 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
| 26 #include "content/public/browser/content_browser_client.h" | 29 #include "content/public/browser/content_browser_client.h" |
| 27 #include "content/public/browser/plugin_service_filter.h" | 30 #include "content/public/browser/plugin_service_filter.h" |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 #endif | 869 #endif |
| 867 | 870 |
| 868 bool PluginServiceImpl::PpapiDevChannelSupported( | 871 bool PluginServiceImpl::PpapiDevChannelSupported( |
| 869 BrowserContext* browser_context, | 872 BrowserContext* browser_context, |
| 870 const GURL& document_url) { | 873 const GURL& document_url) { |
| 871 return GetContentClient()->browser()->IsPluginAllowedToUseDevChannelAPIs( | 874 return GetContentClient()->browser()->IsPluginAllowedToUseDevChannelAPIs( |
| 872 browser_context, document_url); | 875 browser_context, document_url); |
| 873 } | 876 } |
| 874 | 877 |
| 875 } // namespace content | 878 } // namespace content |
| OLD | NEW |