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

Side by Side Diff: Source/modules/notifications/Notification.h

Issue 872313003: Move Notification-related Blink API headers into their own directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 19 matching lines...) Expand all
30 30
31 #ifndef Notification_h 31 #ifndef Notification_h
32 #define Notification_h 32 #define Notification_h
33 33
34 #include "core/dom/ActiveDOMObject.h" 34 #include "core/dom/ActiveDOMObject.h"
35 #include "modules/EventTargetModules.h" 35 #include "modules/EventTargetModules.h"
36 #include "platform/AsyncMethodRunner.h" 36 #include "platform/AsyncMethodRunner.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "platform/text/TextDirection.h" 38 #include "platform/text/TextDirection.h"
39 #include "platform/weborigin/KURL.h" 39 #include "platform/weborigin/KURL.h"
40 #include "public/platform/WebNotificationDelegate.h" 40 #include "public/platform/modules/notifications/WebNotificationDelegate.h"
41 #include "public/platform/WebNotificationPermission.h" 41 #include "public/platform/modules/notifications/WebNotificationPermission.h"
42 #include "wtf/PassOwnPtr.h" 42 #include "wtf/PassOwnPtr.h"
43 #include "wtf/RefCounted.h" 43 #include "wtf/RefCounted.h"
44 44
45 namespace blink { 45 namespace blink {
46 46
47 class ExecutionContext; 47 class ExecutionContext;
48 class NotificationOptions; 48 class NotificationOptions;
49 class NotificationPermissionCallback; 49 class NotificationPermissionCallback;
50 struct WebNotificationData; 50 struct WebNotificationData;
51 51
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 void setState(NotificationState state) { m_state = state; } 148 void setState(NotificationState state) { m_state = state; }
149 149
150 NotificationState m_state; 150 NotificationState m_state;
151 151
152 AsyncMethodRunner<Notification> m_asyncRunner; 152 AsyncMethodRunner<Notification> m_asyncRunner;
153 }; 153 };
154 154
155 } // namespace blink 155 } // namespace blink
156 156
157 #endif // Notification_h 157 #endif // Notification_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/notifications/Notification.cpp » ('j') | public/platform/modules/notifications/OWNERS » ('J')

Powered by Google App Engine
This is Rietveld 408576698