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

Unified Diff: chrome/renderer/resources/plugins/mobile_youtube_plugin.html

Issue 2468423009: Remove plugins::MobileYouTubePlugin, deprecated by Flash embed override. (Closed)
Patch Set: Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/resources/renderer_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/resources/plugins/mobile_youtube_plugin.html
diff --git a/chrome/renderer/resources/plugins/mobile_youtube_plugin.html b/chrome/renderer/resources/plugins/mobile_youtube_plugin.html
deleted file mode 100644
index 69e8efa70f256d69c7ed75656470210ac1bcb293..0000000000000000000000000000000000000000
--- a/chrome/renderer/resources/plugins/mobile_youtube_plugin.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<meta name="viewport" content="width=device-width, user-scalable=no">
-<script>
-function insertBackground() {
- var video = loadTimeData.getValue("video_id");
- document.body.style.backgroundImage = "url('http://img.youtube.com/vi/" + video + "/0.jpg')";
-}
-</script>
-<style type="text/css">
-body {
- background-color: black;
- background-repeat: no-repeat;
- background-size: cover;
- overflow: hidden;
-}
-
-#inner {
- position: absolute;
- left: 50%;
- top: 50%;
- margin-left: -33px;
- margin-top: -23px;
-}
-
-#logo {
- position: absolute;
- right: 5px;
- bottom: 5px;
-}
-
-#play {
- opacity: .7;
-}
-
-#youtube {
- opacity: .7;
-}
-</style>
-</head>
-<body id="body" onLoad="insertBackground()">
-<div id="logo"><img id="youtube" src="youtube.png"/></div>
-<div id="inner"><img id="play" src="play.png" onclick="plugin.openYoutubeURL();"/></div>
-</body>
-</html>
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/resources/renderer_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698