| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef NotificationPresenter_h | 31 #ifndef NotificationPresenter_h |
| 32 #define NotificationPresenter_h | 32 #define NotificationPresenter_h |
| 33 | 33 |
| 34 #include "public/platform/WebNonCopyable.h" |
| 34 #include "public/web/WebNotification.h" | 35 #include "public/web/WebNotification.h" |
| 35 #include "public/web/WebNotificationPresenter.h" | 36 #include "public/web/WebNotificationPresenter.h" |
| 36 #include <map> | 37 #include <map> |
| 37 #include <set> | 38 #include <set> |
| 38 #include <string> | 39 #include <string> |
| 39 | 40 |
| 40 namespace WebTestRunner { | 41 namespace WebTestRunner { |
| 41 | 42 |
| 42 class WebTestDelegate; | 43 class WebTestDelegate; |
| 43 | 44 |
| 44 // A class that implements WebNotificationPresenter for the TestRunner library. | 45 // A class that implements WebNotificationPresenter for the TestRunner library. |
| 45 class NotificationPresenter : public WebKit::WebNotificationPresenter { | 46 class NotificationPresenter : public WebKit::WebNotificationPresenter, public We
bKit::WebNonCopyable { |
| 46 public: | 47 public: |
| 47 NotificationPresenter(); | 48 NotificationPresenter(); |
| 48 virtual ~NotificationPresenter(); | 49 virtual ~NotificationPresenter(); |
| 49 | 50 |
| 50 void setDelegate(WebTestDelegate* delegate) { m_delegate = delegate; } | 51 void setDelegate(WebTestDelegate* delegate) { m_delegate = delegate; } |
| 51 | 52 |
| 52 // Called by the TestRunner to simulate a user granting permission. | 53 // Called by the TestRunner to simulate a user granting permission. |
| 53 void grantPermission(const WebKit::WebString& origin); | 54 void grantPermission(const WebKit::WebString& origin); |
| 54 | 55 |
| 55 // Called by the TestRunner to simulate a user clicking on a notification. | 56 // Called by the TestRunner to simulate a user clicking on a notification. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 76 // Map of active notifications. | 77 // Map of active notifications. |
| 77 std::map<std::string, WebKit::WebNotification> m_activeNotifications; | 78 std::map<std::string, WebKit::WebNotification> m_activeNotifications; |
| 78 | 79 |
| 79 // Map of active replacement IDs to the titles of those notifications | 80 // Map of active replacement IDs to the titles of those notifications |
| 80 std::map<std::string, std::string> m_replacements; | 81 std::map<std::string, std::string> m_replacements; |
| 81 }; | 82 }; |
| 82 | 83 |
| 83 } | 84 } |
| 84 | 85 |
| 85 #endif // NotificationPresenter_h | 86 #endif // NotificationPresenter_h |
| OLD | NEW |