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 <memory> | 7 #include <memory> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1260 #if BUILDFLAG(ENABLE_PLUGINS) && BUILDFLAG(ENABLE_EXTENSIONS) | 1260 #if BUILDFLAG(ENABLE_PLUGINS) && BUILDFLAG(ENABLE_EXTENSIONS) |
1261 bool ChromeContentRendererClient::IsExtensionOrSharedModuleWhitelisted( | 1261 bool ChromeContentRendererClient::IsExtensionOrSharedModuleWhitelisted( |
1262 const GURL& url, const std::set<std::string>& whitelist) { | 1262 const GURL& url, const std::set<std::string>& whitelist) { |
1263 const extensions::ExtensionSet* extension_set = | 1263 const extensions::ExtensionSet* extension_set = |
1264 extensions::RendererExtensionRegistry::Get()->GetMainThreadExtensionSet(); | 1264 extensions::RendererExtensionRegistry::Get()->GetMainThreadExtensionSet(); |
1265 return chrome::IsExtensionOrSharedModuleWhitelisted(url, extension_set, | 1265 return chrome::IsExtensionOrSharedModuleWhitelisted(url, extension_set, |
1266 whitelist); | 1266 whitelist); |
1267 } | 1267 } |
1268 #endif | 1268 #endif |
1269 | 1269 |
1270 std::unique_ptr<blink::WebSpeechSynthesizer> | 1270 blink::WebSpeechSynthesizer* |
1271 ChromeContentRendererClient::OverrideSpeechSynthesizer( | 1271 ChromeContentRendererClient::OverrideSpeechSynthesizer( |
1272 blink::WebSpeechSynthesizerClient* client) { | 1272 blink::WebSpeechSynthesizerClient* client) { |
1273 return base::MakeUnique<TtsDispatcher>(client); | 1273 return new TtsDispatcher(client); |
1274 } | 1274 } |
1275 | 1275 |
1276 bool ChromeContentRendererClient::AllowPepperMediaStreamAPI( | 1276 bool ChromeContentRendererClient::AllowPepperMediaStreamAPI( |
1277 const GURL& url) { | 1277 const GURL& url) { |
1278 #if defined(OS_ANDROID) | 1278 #if defined(OS_ANDROID) |
1279 return false; | 1279 return false; |
1280 #else | 1280 #else |
1281 // Allow access for tests. | 1281 // Allow access for tests. |
1282 if (base::CommandLine::ForCurrentProcess()->HasSwitch( | 1282 if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
1283 switches::kEnablePepperTesting)) { | 1283 switches::kEnablePepperTesting)) { |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1551 | 1551 |
1552 RecordYouTubeRewriteUMA(result); | 1552 RecordYouTubeRewriteUMA(result); |
1553 return corrected_url.ReplaceComponents(r); | 1553 return corrected_url.ReplaceComponents(r); |
1554 } | 1554 } |
1555 | 1555 |
1556 std::unique_ptr<base::TaskScheduler::InitParams> | 1556 std::unique_ptr<base::TaskScheduler::InitParams> |
1557 ChromeContentRendererClient::GetTaskSchedulerInitParams() { | 1557 ChromeContentRendererClient::GetTaskSchedulerInitParams() { |
1558 return task_scheduler_util:: | 1558 return task_scheduler_util:: |
1559 GetRendererTaskSchedulerInitParamsFromCommandLine(); | 1559 GetRendererTaskSchedulerInitParamsFromCommandLine(); |
1560 } | 1560 } |
OLD | NEW |