Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 2154233003: Rewrite YouTube Flash embeds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/command_line.h" 10 #include "base/command_line.h"
11 #include "base/debug/crash_logging.h" 11 #include "base/debug/crash_logging.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/metrics/field_trial.h" 14 #include "base/metrics/field_trial.h"
15 #include "base/metrics/histogram.h" 15 #include "base/metrics/histogram.h"
16 #include "base/metrics/user_metrics_action.h" 16 #include "base/metrics/user_metrics_action.h"
17 #include "base/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
18 #include "base/strings/string_util.h" 18 #include "base/strings/string_util.h"
19 #include "base/strings/utf_string_conversions.h" 19 #include "base/strings/utf_string_conversions.h"
20 #include "base/time/time.h" 20 #include "base/time/time.h"
21 #include "base/values.h" 21 #include "base/values.h"
22 #include "build/build_config.h" 22 #include "build/build_config.h"
23 #include "chrome/common/channel_info.h" 23 #include "chrome/common/channel_info.h"
24 #include "chrome/common/chrome_features.h"
24 #include "chrome/common/chrome_isolated_world_ids.h" 25 #include "chrome/common/chrome_isolated_world_ids.h"
25 #include "chrome/common/chrome_paths.h" 26 #include "chrome/common/chrome_paths.h"
26 #include "chrome/common/chrome_switches.h" 27 #include "chrome/common/chrome_switches.h"
27 #include "chrome/common/crash_keys.h" 28 #include "chrome/common/crash_keys.h"
28 #include "chrome/common/pepper_permission_util.h" 29 #include "chrome/common/pepper_permission_util.h"
29 #include "chrome/common/render_messages.h" 30 #include "chrome/common/render_messages.h"
30 #include "chrome/common/secure_origin_whitelist.h" 31 #include "chrome/common/secure_origin_whitelist.h"
31 #include "chrome/common/url_constants.h" 32 #include "chrome/common/url_constants.h"
32 #include "chrome/grit/generated_resources.h" 33 #include "chrome/grit/generated_resources.h"
33 #include "chrome/grit/locale_settings.h" 34 #include "chrome/grit/locale_settings.h"
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1383 // chrome.system.network.getNetworkInterfaces provides the same 1384 // chrome.system.network.getNetworkInterfaces provides the same
1384 // information. Also, the enforcement of sending and binding UDP is already done 1385 // information. Also, the enforcement of sending and binding UDP is already done
1385 // by chrome extension permission model. 1386 // by chrome extension permission model.
1386 bool ChromeContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { 1387 bool ChromeContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() {
1387 #if defined(ENABLE_EXTENSIONS) 1388 #if defined(ENABLE_EXTENSIONS)
1388 return !IsStandaloneExtensionProcess(); 1389 return !IsStandaloneExtensionProcess();
1389 #else 1390 #else
1390 return true; 1391 return true;
1391 #endif 1392 #endif
1392 } 1393 }
1394
1395 std::string ChromeContentRendererClient::OverrideFlashEmbedWithHTML(
1396 const std::string& str_url) {
1397 DCHECK(!str_url.empty());
1398 if (!base::FeatureList::IsEnabled(features::kOverrideYouTubeFlashEmbed))
1399 return "";
mlamouri (slow - plz ping) 2016/07/28 19:46:54 nit: leave spaces around the `if` block: ``` DCHEC
kdsilva 2016/07/29 17:59:06 Done.
1400 GURL url = GURL(str_url);
1401
1402 // We'll only modify YouTube Flash embeds. The URLs can be recognized since
1403 // they're in the following form: youtube.com/v/VIDEO_ID. So, we check to see
1404 // if the given URL does follow that format. We don't modify
1405 // any URLs that contain the enablejsapi=1 parameter since the page may be
1406 // interacting with the YouTube Flash player in Javascript and we don't
1407 // want to break working content.
1408 if (!url.DomainIs("youtube.com") || url.path().find("/v/") != 0
1409 || str_url.find("enablejsapi=1") != std::string::npos)
1410 return "";
1411
1412 std::string ret_url = str_url;
1413 ret_url.replace(ret_url.find("/v/"), 3, "/embed/");
1414
1415 // If the website is using an invalid YouTube URL, we'll try and
1416 // fix the URL by ensuring that if there are multiple parameters,
1417 // the parameter string begins with a "?" and then follows with a "&"
1418 // for each subsequent parameter.
1419 size_t index = ret_url.find_first_of("&?");
1420 bool invalid_url = index != std::string::npos && ret_url.at(index) == '&';
1421
1422 if (!invalid_url)
1423 return ret_url;
1424
1425 // ? should appear first before all parameters
1426 ret_url.replace(index, 1, "?");
1427
1428 // Replace all instances of ? (after the first) with &
1429 size_t start_pos = index + 1;
1430 while ((start_pos = ret_url.find("?", start_pos)) != std::string::npos) {
mlamouri (slow - plz ping) 2016/07/28 19:46:54 That really sounds like something that should be w
kdsilva 2016/07/29 17:59:06 Done.
1431 ret_url.replace(start_pos, 1, "&");
1432 start_pos += 1;
1433 }
1434 return ret_url;
1435 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698