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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 class WebServiceWorker; 51 class WebServiceWorker;
52 class WebServiceWorkerProvider; 52 class WebServiceWorkerProvider;
53 class WebServiceWorkerRegistration; 53 class WebServiceWorkerRegistration;
54 54
55 class MODULES_EXPORT ServiceWorkerContainer final 55 class MODULES_EXPORT ServiceWorkerContainer final
56 : public RefCountedGarbageCollectedEventTargetWithInlineData<ServiceWorkerCo ntainer> 56 : public RefCountedGarbageCollectedEventTargetWithInlineData<ServiceWorkerCo ntainer>
57 , public ContextLifecycleObserver 57 , public ContextLifecycleObserver
58 , public WebServiceWorkerProviderClient { 58 , public WebServiceWorkerProviderClient {
59 DEFINE_WRAPPERTYPEINFO(); 59 DEFINE_WRAPPERTYPEINFO();
60 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(ServiceWorkerContainer); 60 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(ServiceWorkerContainer);
61 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerContainer); 61 USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerContainer);
62 public: 62 public:
63 using RegistrationCallbacks = WebServiceWorkerProvider::WebServiceWorkerRegi strationCallbacks; 63 using RegistrationCallbacks = WebServiceWorkerProvider::WebServiceWorkerRegi strationCallbacks;
64 64
65 static ServiceWorkerContainer* create(ExecutionContext*); 65 static ServiceWorkerContainer* create(ExecutionContext*);
66 ~ServiceWorkerContainer(); 66 ~ServiceWorkerContainer();
67 67
68 void willBeDetachedFromFrame(); 68 void willBeDetachedFromFrame();
69 69
70 DECLARE_VIRTUAL_TRACE(); 70 DECLARE_VIRTUAL_TRACE();
71 71
(...skipping 26 matching lines...) Expand all
98 ReadyProperty* createReadyProperty(); 98 ReadyProperty* createReadyProperty();
99 99
100 WebServiceWorkerProvider* m_provider; 100 WebServiceWorkerProvider* m_provider;
101 Member<ServiceWorker> m_controller; 101 Member<ServiceWorker> m_controller;
102 Member<ReadyProperty> m_ready; 102 Member<ReadyProperty> m_ready;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // ServiceWorkerContainer_h 107 #endif // ServiceWorkerContainer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698