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

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

Issue 651503002: Clean up forward declarations in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
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 25 matching lines...) Expand all
36 #include "core/workers/AbstractWorker.h" 36 #include "core/workers/AbstractWorker.h"
37 #include "public/platform/WebServiceWorker.h" 37 #include "public/platform/WebServiceWorker.h"
38 #include "public/platform/WebServiceWorkerProxy.h" 38 #include "public/platform/WebServiceWorkerProxy.h"
39 #include "wtf/OwnPtr.h" 39 #include "wtf/OwnPtr.h"
40 #include "wtf/PassOwnPtr.h" 40 #include "wtf/PassOwnPtr.h"
41 #include "wtf/PassRefPtr.h" 41 #include "wtf/PassRefPtr.h"
42 #include "wtf/RefCounted.h" 42 #include "wtf/RefCounted.h"
43 43
44 namespace blink { 44 namespace blink {
45 45
46 class ScriptState;
47 class ScriptPromiseResolver; 46 class ScriptPromiseResolver;
48 47
49 class ServiceWorker final : public AbstractWorker, public WebServiceWorkerProxy { 48 class ServiceWorker final : public AbstractWorker, public WebServiceWorkerProxy {
50 DEFINE_WRAPPERTYPEINFO(); 49 DEFINE_WRAPPERTYPEINFO();
51 public: 50 public:
52 // For CallbackPromiseAdapter 51 // For CallbackPromiseAdapter
53 typedef WebServiceWorker WebType; 52 typedef WebServiceWorker WebType;
54 static PassRefPtrWillBeRawPtr<ServiceWorker> take(ScriptPromiseResolver*, We bType* worker); 53 static PassRefPtrWillBeRawPtr<ServiceWorker> take(ScriptPromiseResolver*, We bType* worker);
55 54
56 static PassRefPtrWillBeRawPtr<ServiceWorker> from(ExecutionContext*, WebType *); 55 static PassRefPtrWillBeRawPtr<ServiceWorker> from(ExecutionContext*, WebType *);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 virtual bool hasPendingActivity() const override; 89 virtual bool hasPendingActivity() const override;
91 virtual void stop() override; 90 virtual void stop() override;
92 91
93 OwnPtr<WebServiceWorker> m_outerWorker; 92 OwnPtr<WebServiceWorker> m_outerWorker;
94 ProxyState m_proxyState; 93 ProxyState m_proxyState;
95 }; 94 };
96 95
97 } // namespace blink 96 } // namespace blink
98 97
99 #endif // ServiceWorker_h 98 #endif // ServiceWorker_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/RespondWithObserver.h ('k') | Source/modules/serviceworkers/ServiceWorkerClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698