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

Side by Side Diff: Source/web/ServiceWorkerGlobalScopeProxy.cpp

Issue 1321453007: Some random Web Notification cleanups (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: typo fix Created 5 years, 3 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
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "modules/background_sync/SyncRegistration.h" 43 #include "modules/background_sync/SyncRegistration.h"
44 #include "modules/fetch/Headers.h" 44 #include "modules/fetch/Headers.h"
45 #include "modules/geofencing/CircularGeofencingRegion.h" 45 #include "modules/geofencing/CircularGeofencingRegion.h"
46 #include "modules/geofencing/GeofencingEvent.h" 46 #include "modules/geofencing/GeofencingEvent.h"
47 #include "modules/navigatorconnect/AcceptConnectionObserver.h" 47 #include "modules/navigatorconnect/AcceptConnectionObserver.h"
48 #include "modules/navigatorconnect/CrossOriginServiceWorkerClient.h" 48 #include "modules/navigatorconnect/CrossOriginServiceWorkerClient.h"
49 #include "modules/navigatorconnect/ServicePortCollection.h" 49 #include "modules/navigatorconnect/ServicePortCollection.h"
50 #include "modules/navigatorconnect/WorkerNavigatorServices.h" 50 #include "modules/navigatorconnect/WorkerNavigatorServices.h"
51 #include "modules/notifications/Notification.h" 51 #include "modules/notifications/Notification.h"
52 #include "modules/notifications/NotificationEvent.h" 52 #include "modules/notifications/NotificationEvent.h"
53 #include "modules/notifications/NotificationEventInit.h"
53 #include "modules/push_messaging/PushEvent.h" 54 #include "modules/push_messaging/PushEvent.h"
54 #include "modules/push_messaging/PushMessageData.h" 55 #include "modules/push_messaging/PushMessageData.h"
55 #include "modules/serviceworkers/ExtendableEvent.h" 56 #include "modules/serviceworkers/ExtendableEvent.h"
56 #include "modules/serviceworkers/FetchEvent.h" 57 #include "modules/serviceworkers/FetchEvent.h"
57 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h" 58 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h"
58 #include "modules/serviceworkers/WaitUntilObserver.h" 59 #include "modules/serviceworkers/WaitUntilObserver.h"
59 #include "platform/RuntimeEnabledFeatures.h" 60 #include "platform/RuntimeEnabledFeatures.h"
60 #include "public/platform/WebCrossOriginServiceWorkerClient.h" 61 #include "public/platform/WebCrossOriginServiceWorkerClient.h"
61 #include "public/platform/WebServiceWorkerEventResult.h" 62 #include "public/platform/WebServiceWorkerEventResult.h"
62 #include "public/platform/WebServiceWorkerRequest.h" 63 #include "public/platform/WebServiceWorkerRequest.h"
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 ServiceWorkerGlobalScopeProxy::ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerIm pl& embeddedWorker, Document& document, WebServiceWorkerContextClient& client) 238 ServiceWorkerGlobalScopeProxy::ServiceWorkerGlobalScopeProxy(WebEmbeddedWorkerIm pl& embeddedWorker, Document& document, WebServiceWorkerContextClient& client)
238 : m_embeddedWorker(embeddedWorker) 239 : m_embeddedWorker(embeddedWorker)
239 , m_document(document) 240 , m_document(document)
240 , m_documentURL(document.url().copy()) 241 , m_documentURL(document.url().copy())
241 , m_client(client) 242 , m_client(client)
242 , m_workerGlobalScope(nullptr) 243 , m_workerGlobalScope(nullptr)
243 { 244 {
244 } 245 }
245 246
246 } // namespace blink 247 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698