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

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

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 class ExecutionContext; 49 class ExecutionContext;
50 class ServiceWorker; 50 class ServiceWorker;
51 class WebServiceWorker; 51 class WebServiceWorker;
52 class WebServiceWorkerProvider; 52 class WebServiceWorkerProvider;
53 53
54 class ServiceWorkerContainer FINAL 54 class ServiceWorkerContainer FINAL
55 : public RefCountedWillBeGarbageCollectedFinalized<ServiceWorkerContainer> 55 : public RefCountedWillBeGarbageCollectedFinalized<ServiceWorkerContainer>
56 , public ScriptWrappable 56 , public ScriptWrappable
57 , public ContextLifecycleObserver 57 , public ContextLifecycleObserver
58 , public WebServiceWorkerProviderClient { 58 , public WebServiceWorkerProviderClient {
59 DEFINE_WRAPPERTYPEINFO();
59 public: 60 public:
60 static PassRefPtrWillBeRawPtr<ServiceWorkerContainer> create(ExecutionContex t*); 61 static PassRefPtrWillBeRawPtr<ServiceWorkerContainer> create(ExecutionContex t*);
61 ~ServiceWorkerContainer(); 62 ~ServiceWorkerContainer();
62 63
63 void willBeDetachedFromFrame(); 64 void willBeDetachedFromFrame();
64 65
65 void trace(Visitor*); 66 void trace(Visitor*);
66 67
67 PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); } 68 PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); }
68 PassRefPtrWillBeRawPtr<ServiceWorker> controller() { return m_controller.get (); } 69 PassRefPtrWillBeRawPtr<ServiceWorker> controller() { return m_controller.get (); }
(...skipping 23 matching lines...) Expand all
92 RefPtrWillBeMember<ServiceWorker> m_active; 93 RefPtrWillBeMember<ServiceWorker> m_active;
93 RefPtrWillBeMember<ServiceWorker> m_controller; 94 RefPtrWillBeMember<ServiceWorker> m_controller;
94 RefPtrWillBeMember<ServiceWorker> m_installing; 95 RefPtrWillBeMember<ServiceWorker> m_installing;
95 RefPtrWillBeMember<ServiceWorker> m_waiting; 96 RefPtrWillBeMember<ServiceWorker> m_waiting;
96 PersistentWillBeMember<ReadyProperty> m_ready; 97 PersistentWillBeMember<ReadyProperty> m_ready;
97 }; 98 };
98 99
99 } // namespace blink 100 } // namespace blink
100 101
101 #endif // ServiceWorkerContainer_h 102 #endif // ServiceWorkerContainer_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerClients.h ('k') | Source/modules/serviceworkers/ServiceWorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698