Merge changes Ib9d0f4fc,I47195f91,Ib26ef543 into cw-f-dev

* changes:
  Remove unused webkit assets.
  Remove bootanimation sounds.
  Reduce the size of boot animaion assets.
This commit is contained in:
Andrew Rossignol
2016-08-23 18:40:54 +00:00
committed by Android (Google) Code Review
14 changed files with 0 additions and 9879 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -1,24 +0,0 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<title>New incognito window</title>
</head>
<body>
<p><strong>You've gone incognito</strong>. Pages you view in this window
won't appear in your browser history or search history, and they won't
leave other traces, like cookies, on your device after you close the
incognito window. Any files you download or bookmarks you create will be
preserved, however.</p>
<p><strong>Going incognito doesn't affect the behavior of other people,
servers, or software. Be wary of:</strong></p>
<ul>
<li>Websites that collect or share information about you</li>
<li>Internet service providers or employers that track the pages you visit</li>
<li>Malicious software that tracks your keystrokes in exchange for free smileys</li>
<li>Surveillance by secret agents</li>
<li>People standing behind you</li>
</ul>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1009 B

View File

@@ -1,71 +0,0 @@
<html>
<head>
<style type="text/css">
body { background-color: black; }
a:hover { text-decoration: none; }
a:link { color: black; }
a:visited { color: black; }
#main {
position: absolute;
left: 0%;
top: 0%;
width: 100%;
height: 100%;
padding: 0%;
z-index: 10;
background-size: 100%;
background: no-repeat;
background-position: center;
}
#play {
position: absolute;
left: 50%;
top: 50%;
}
#logo {
position: absolute;
bottom: 0;
right: 0;
}
</style>
</head>
<body id="body">
<script type="text/javascript">
function setup() {
var width = document.body.clientWidth;
var height = document.body.clientHeight;
var mainElement = document.getElementById("main");
var playElement = document.getElementById("play");
var loadcount = 0;
var POSTER = "http://img.youtube.com/vi/VIDEO_ID/0.jpg";
function doload() {
if (++loadcount == 2) {
// Resize the element to the right size
mainElement.width = width;
mainElement.height = height;
mainElement.style.backgroundImage = "url('" + POSTER + "')";
// Center the play button
playElement.style.marginTop = "-" + play.height/2 + "px";
playElement.style.marginLeft = "-" + play.width/2 + "px";
playElement.addEventListener("click", function(e) {
top.location.href = "vnd.youtube:VIDEO_ID";
}, false);
}
}
var background = new Image();
background.onload = doload;
background.src = POSTER;
play = new Image();
play.onload = doload;
play.src = "play.png";
}
window.onload = setup;
</script>
<div id="main">
<img src="play.png" id="play"></img>
<img src="youtube.png" id="logo"></img>
</div>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB