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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 #include "third_party/WebKit/public/web/WebPluginParams.h" | 93 #include "third_party/WebKit/public/web/WebPluginParams.h" |
94 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" | 94 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" |
95 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" | 95 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" |
96 #include "third_party/WebKit/public/platform/WebURL.h" | 96 #include "third_party/WebKit/public/platform/WebURL.h" |
97 #include "third_party/WebKit/public/platform/WebURLError.h" | 97 #include "third_party/WebKit/public/platform/WebURLError.h" |
98 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 98 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
99 #include "ui/base/l10n/l10n_util.h" | 99 #include "ui/base/l10n/l10n_util.h" |
100 #include "ui/base/layout.h" | 100 #include "ui/base/layout.h" |
101 #include "ui/base/resource/resource_bundle.h" | 101 #include "ui/base/resource/resource_bundle.h" |
102 #include "ui/webui/jstemplate_builder.h" | 102 #include "ui/webui/jstemplate_builder.h" |
103 #include "webkit/plugins/ppapi/plugin_module.h" | |
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; |
111 using autofill::PasswordAutofillAgent; | 110 using autofill::PasswordAutofillAgent; |
112 using autofill::PasswordGenerationManager; | 111 using autofill::PasswordGenerationManager; |
113 using content::RenderThread; | 112 using content::RenderThread; |
(...skipping 1168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1282 if (CommandLine::ForCurrentProcess()->HasSwitch( | 1281 if (CommandLine::ForCurrentProcess()->HasSwitch( |
1283 switches::kEnablePepperTesting)) { | 1282 switches::kEnablePepperTesting)) { |
1284 return true; | 1283 return true; |
1285 } | 1284 } |
1286 #endif // !defined(OS_ANDROID) | 1285 #endif // !defined(OS_ANDROID) |
1287 return false; | 1286 return false; |
1288 } | 1287 } |
1289 | 1288 |
1290 | 1289 |
1291 } // namespace chrome | 1290 } // namespace chrome |
OLD | NEW |