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

Unified Diff: chrome/browser/resources/notification.html

Issue 194108: adds DesktopNotificationService to Profile (Closed)
Patch Set: more feedback Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/notification.html
diff --git a/chrome/browser/resources/notification.html b/chrome/browser/resources/notification.html
new file mode 100644
index 0000000000000000000000000000000000000000..5e436e7738a2e389ec2ec53cea27c332e1fe6993
--- /dev/null
+++ b/chrome/browser/resources/notification.html
@@ -0,0 +1,36 @@
+<html>
+<head>
+<title>$2</title>
+<style type="text/css"><!--
+#icon {
+height:48px;
+width:48px;
+position:absolute;
+top:2px;
+left:2px;
+display:$4;
+}
+#title {
+font-weight:bold;
+position:absolute;
+top:3px;
+left:$5px;
+font-family:sans-serif;
+font-size:11pt;
+}
+#body {
+position:absolute;
+left:$5px;
+top:20px;
+font-family:sans-serif;
+font-size:9pt;
+}
+//-->
+</style>
+</head>
+<body>
+<div id="icon"><img src="$1" /></div>
+<div id="title">$2</div>
+<div id="body">$3</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698