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

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

Issue 614373007: Oilpan: Remove adoptRefCountedGarbageCollected (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 27 matching lines...) Expand all
38 #include "modules/notifications/NotificationClient.h" 38 #include "modules/notifications/NotificationClient.h"
39 #include "modules/notifications/NotificationController.h" 39 #include "modules/notifications/NotificationController.h"
40 #include "modules/notifications/NotificationOptions.h" 40 #include "modules/notifications/NotificationOptions.h"
41 #include "modules/notifications/NotificationPermissionClient.h" 41 #include "modules/notifications/NotificationPermissionClient.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 Notification* Notification::create(ExecutionContext* context, const String& titl e, const NotificationOptions& options) 45 Notification* Notification::create(ExecutionContext* context, const String& titl e, const NotificationOptions& 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 = new Notification(title, context, &client);
49 49
50 notification->setBody(options.body()); 50 notification->setBody(options.body());
51 notification->setTag(options.tag()); 51 notification->setTag(options.tag());
52 notification->setLang(options.lang()); 52 notification->setLang(options.lang());
53 notification->setDir(options.dir()); 53 notification->setDir(options.dir());
54 if (options.hasIcon()) { 54 if (options.hasIcon()) {
55 KURL iconUrl = options.icon().isEmpty() ? KURL() : context->completeURL( options.icon()); 55 KURL iconUrl = options.icon().isEmpty() ? KURL() : context->completeURL( options.icon());
56 if (!iconUrl.isEmpty() && iconUrl.isValid()) 56 if (!iconUrl.isEmpty() && iconUrl.isValid())
57 notification->setIconUrl(iconUrl); 57 notification->setIconUrl(iconUrl);
58 } 58 }
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 m_asyncRunner.stop(); 193 m_asyncRunner.stop();
194 } 194 }
195 195
196 bool Notification::hasPendingActivity() const 196 bool Notification::hasPendingActivity() const
197 { 197 {
198 return m_state == NotificationStateShowing || m_asyncRunner.isActive(); 198 return m_state == NotificationStateShowing || m_asyncRunner.isActive();
199 } 199 }
200 200
201 } // namespace blink 201 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698