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

Unified Diff: public/platform/modules/notifications/WebNotificationData.h

Issue 1093243003: [WIP] add "auto" attr in notifications Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/modules/notifications/Notification.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/modules/notifications/WebNotificationData.h
diff --git a/public/platform/modules/notifications/WebNotificationData.h b/public/platform/modules/notifications/WebNotificationData.h
index c1f0a5370e8b88e615303b0725622b379dc1cfc3..b1785aa889f634261f0fca1a48f4492df3c5375f 100644
--- a/public/platform/modules/notifications/WebNotificationData.h
+++ b/public/platform/modules/notifications/WebNotificationData.h
@@ -14,11 +14,12 @@ namespace blink {
struct WebNotificationData {
enum Direction {
DirectionLeftToRight,
- DirectionRightToLeft
+ DirectionRightToLeft,
+ DirectionAuto
};
WebNotificationData()
- : direction(DirectionLeftToRight)
+ : direction(DirectionAuto)
, silent(false)
{
}
« no previous file with comments | « Source/modules/notifications/Notification.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698