OLD | NEW |
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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "bindings/core/v8/Dictionary.h" | 34 #include "bindings/core/v8/Dictionary.h" |
35 #include "bindings/core/v8/ScriptWrappable.h" | 35 #include "bindings/core/v8/ScriptWrappable.h" |
36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
37 #include "core/events/Event.h" | 37 #include "core/events/Event.h" |
38 #include "core/frame/UseCounter.h" | 38 #include "core/frame/UseCounter.h" |
39 #include "core/page/WindowFocusAllowedIndicator.h" | 39 #include "core/page/WindowFocusAllowedIndicator.h" |
40 #include "modules/notifications/NotificationClient.h" | 40 #include "modules/notifications/NotificationClient.h" |
41 #include "modules/notifications/NotificationController.h" | 41 #include "modules/notifications/NotificationController.h" |
42 | 42 |
43 namespace WebCore { | 43 namespace blink { |
44 | 44 |
45 Notification* Notification::create(ExecutionContext* context, const String& titl
e, const Dictionary& options) | 45 Notification* Notification::create(ExecutionContext* context, const String& titl
e, const Dictionary& options) |
46 { | 46 { |
47 NotificationClient& client = NotificationController::clientFrom(context); | 47 NotificationClient& client = NotificationController::clientFrom(context); |
48 Notification* notification = adoptRefCountedGarbageCollectedWillBeNoop(new N
otification(title, context, &client)); | 48 Notification* notification = adoptRefCountedGarbageCollectedWillBeNoop(new N
otification(title, context, &client)); |
49 | 49 |
50 String argument; | 50 String argument; |
51 if (DictionaryHelper::get(options, "body", argument)) | 51 if (DictionaryHelper::get(options, "body", argument)) |
52 notification->setBody(argument); | 52 notification->setBody(argument); |
53 if (DictionaryHelper::get(options, "tag", argument)) | 53 if (DictionaryHelper::get(options, "tag", argument)) |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 } | 194 } |
195 | 195 |
196 m_asyncRunner.stop(); | 196 m_asyncRunner.stop(); |
197 } | 197 } |
198 | 198 |
199 bool Notification::hasPendingActivity() const | 199 bool Notification::hasPendingActivity() const |
200 { | 200 { |
201 return m_state == NotificationStateShowing || m_asyncRunner.isActive(); | 201 return m_state == NotificationStateShowing || m_asyncRunner.isActive(); |
202 } | 202 } |
203 | 203 |
204 } // namespace WebCore | 204 } // namespace blink |
OLD | NEW |