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

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

Issue 373423002: Split Dictionary's get and convert into DictionaryHelper. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 30 matching lines...) Expand all
41 #include "modules/notifications/NotificationController.h" 41 #include "modules/notifications/NotificationController.h"
42 42
43 namespace WebCore { 43 namespace WebCore {
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 (options.get("body", argument)) 51 if (DictionaryHelper::get(options, "body", argument))
52 notification->setBody(argument); 52 notification->setBody(argument);
53 if (options.get("tag", argument)) 53 if (DictionaryHelper::get(options, "tag", argument))
54 notification->setTag(argument); 54 notification->setTag(argument);
55 if (options.get("lang", argument)) 55 if (DictionaryHelper::get(options, "lang", argument))
56 notification->setLang(argument); 56 notification->setLang(argument);
57 if (options.get("dir", argument)) 57 if (DictionaryHelper::get(options, "dir", argument))
58 notification->setDir(argument); 58 notification->setDir(argument);
59 if (options.get("icon", argument)) { 59 if (DictionaryHelper::get(options, "icon", argument)) {
60 KURL iconUrl = argument.isEmpty() ? KURL() : context->completeURL(argume nt); 60 KURL iconUrl = argument.isEmpty() ? KURL() : context->completeURL(argume nt);
61 if (!iconUrl.isEmpty() && iconUrl.isValid()) 61 if (!iconUrl.isEmpty() && iconUrl.isValid())
62 notification->setIconUrl(iconUrl); 62 notification->setIconUrl(iconUrl);
63 } 63 }
64 64
65 notification->suspendIfNeeded(); 65 notification->suspendIfNeeded();
66 return notification; 66 return notification;
67 } 67 }
68 68
69 Notification::Notification(const String& title, ExecutionContext* context, Notif icationClient* client) 69 Notification::Notification(const String& title, ExecutionContext* context, Notif icationClient* client)
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 m_client = 0; 195 m_client = 0;
196 m_state = Closed; 196 m_state = Closed;
197 } 197 }
198 198
199 bool Notification::hasPendingActivity() const 199 bool Notification::hasPendingActivity() const
200 { 200 {
201 return m_state == Showing || (m_asyncRunner && m_asyncRunner->isActive()); 201 return m_state == Showing || (m_asyncRunner && m_asyncRunner->isActive());
202 } 202 }
203 203
204 } // namespace WebCore 204 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/mediastream/UserMediaRequest.cpp ('k') | Source/modules/serviceworkers/Headers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698