Commit b8a4076c authored by dpapad's avatar dpapad Committed by Commit Bot

Delete unused notification_1line.html, notification_2line.html files.

Bug: None
Change-Id: I18128ec2dbd49db91fd31275614b3a958235bd34
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1613649
Commit-Queue: Rebekah Potter <rbpotter@chromium.org>
Auto-Submit: Demetrios Papadopoulos <dpapad@chromium.org>
Reviewed-by: default avatarRebekah Potter <rbpotter@chromium.org>
Cr-Commit-Position: refs/heads/master@{#660683}
parent 8e73a6d5
......@@ -379,11 +379,6 @@
<include name="IDR_NETWORK_SPEECH_SYNTHESIS_MANIFEST" file="resources\network_speech_synthesis\manifest.json" type="BINDATA" />
<include name="IDR_PREDICTORS_HTML" file="resources\predictors\predictors.html" flattenhtml="true" allowexternalscript="true" type="BINDATA" compress="gzip" />
<include name="IDR_PREDICTORS_JS" file="resources\predictors\predictors.js" flattenhtml="true" type="BINDATA" compress="gzip" />
<if expr="not is_android">
<include name="IDR_NOTIFICATION_1LINE_HTML" file="resources\notification_1line.html" flattenhtml="true" type="BINDATA" />
<include name="IDR_NOTIFICATION_2LINE_HTML" file="resources\notification_2line.html" flattenhtml="true" type="BINDATA" />
<include name="IDR_NOTIFICATION_ICON_HTML" file="resources\notification_icon.html" type="BINDATA" />
</if>
<if expr="enable_service_discovery">
<include name="IDR_LOCAL_DISCOVERY_HTML" file="resources\local_discovery\local_discovery.html" flattenhtml="true" allowexternalscript="true" type="BINDATA" />
......
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>$2</title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<style>
body {
font-size: 13px;
}
</style>
</head>
<body dir="$3"><div id="$1">$2</div></body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>$1</title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<style type="text/css">
#title,
#description {
font-size: 13px;
}
#title {
font-weight: bold;
}
</style>
</head>
<body dir="$3">
<div id="title">$1</div>
<div id="description">$2</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>$2</title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<style>
body {
direction: $5;
}
#icon {
height: 32px;
width: 32px;
float: $4;
}
#title {
margin-$4: 38px;
font-weight: bold;
font-size: 13px;
}
#description {
margin-$4: 38px;
font-size: 13px;
}
</style>
</head>
<body>
<div id="icon"><img src="$1" width="32" height="32"></div>
<div id="title">$2</div>
<div id="description">$3</div>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment