| 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 "chrome/renderer/chrome_content_renderer_client.h" | 5 #include "chrome/renderer/chrome_content_renderer_client.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 #include "third_party/WebKit/public/web/WebPluginParams.h" | 90 #include "third_party/WebKit/public/web/WebPluginParams.h" |
| 91 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" | 91 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" |
| 92 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" | 92 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" |
| 93 #include "third_party/WebKit/public/platform/WebURL.h" | 93 #include "third_party/WebKit/public/platform/WebURL.h" |
| 94 #include "third_party/WebKit/public/platform/WebURLError.h" | 94 #include "third_party/WebKit/public/platform/WebURLError.h" |
| 95 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 95 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
| 96 #include "ui/base/l10n/l10n_util.h" | 96 #include "ui/base/l10n/l10n_util.h" |
| 97 #include "ui/base/layout.h" | 97 #include "ui/base/layout.h" |
| 98 #include "ui/base/resource/resource_bundle.h" | 98 #include "ui/base/resource/resource_bundle.h" |
| 99 #include "ui/webui/jstemplate_builder.h" | 99 #include "ui/webui/jstemplate_builder.h" |
| 100 #include "webkit/plugins/npapi/plugin_list.h" | |
| 101 #include "webkit/plugins/ppapi/plugin_module.h" | 100 #include "webkit/plugins/ppapi/plugin_module.h" |
| 102 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" | 101 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" |
| 103 | 102 |
| 104 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. | 103 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. |
| 105 | 104 |
| 106 #if defined(ENABLE_WEBRTC) | 105 #if defined(ENABLE_WEBRTC) |
| 107 #include "chrome/renderer/media/webrtc_logging_message_filter.h" | 106 #include "chrome/renderer/media/webrtc_logging_message_filter.h" |
| 108 #endif | 107 #endif |
| 109 | 108 |
| 110 using autofill::AutofillAgent; | 109 using autofill::AutofillAgent; |
| (...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1278 if (CommandLine::ForCurrentProcess()->HasSwitch( | 1277 if (CommandLine::ForCurrentProcess()->HasSwitch( |
| 1279 switches::kEnablePepperTesting)) { | 1278 switches::kEnablePepperTesting)) { |
| 1280 return true; | 1279 return true; |
| 1281 } | 1280 } |
| 1282 #endif // !defined(OS_ANDROID) | 1281 #endif // !defined(OS_ANDROID) |
| 1283 return false; | 1282 return false; |
| 1284 } | 1283 } |
| 1285 | 1284 |
| 1286 | 1285 |
| 1287 } // namespace chrome | 1286 } // namespace chrome |
| OLD | NEW |