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

Side by Side Diff: Source/web/ServiceWorkerGlobalScopeClientImpl.h

Issue 384633002: Oilpan: add transition types to remaining Fetch and ServiceWorker objects (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Another rebase Created 6 years, 5 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerGlobalScopeClientImpl); 44 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerGlobalScopeClientImpl);
45 public: 45 public:
46 static PassOwnPtrWillBeRawPtr<WebCore::ServiceWorkerGlobalScopeClient> creat e(WebServiceWorkerContextClient&); 46 static PassOwnPtrWillBeRawPtr<WebCore::ServiceWorkerGlobalScopeClient> creat e(WebServiceWorkerContextClient&);
47 virtual ~ServiceWorkerGlobalScopeClientImpl(); 47 virtual ~ServiceWorkerGlobalScopeClientImpl();
48 48
49 virtual void getClients(WebServiceWorkerClientsCallbacks*); 49 virtual void getClients(WebServiceWorkerClientsCallbacks*);
50 virtual WebURL scope() const OVERRIDE; 50 virtual WebURL scope() const OVERRIDE;
51 51
52 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult ) OVERRIDE; 52 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult ) OVERRIDE;
53 virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEvent Result) OVERRIDE; 53 virtual void didHandleInstallEvent(int installEventID, WebServiceWorkerEvent Result) OVERRIDE;
54 virtual void didHandleFetchEvent(int fetchEventID, PassRefPtr<WebCore::Respo nse>) OVERRIDE; 54 virtual void didHandleFetchEvent(int fetchEventID, PassRefPtrWillBeRawPtr<We bCore::Response>) OVERRIDE;
55 virtual void didHandleSyncEvent(int syncEventID) OVERRIDE; 55 virtual void didHandleSyncEvent(int syncEventID) OVERRIDE;
56 virtual void postMessageToClient(int clientID, const WebString& message, Pas sOwnPtr<WebMessagePortChannelArray>) OVERRIDE; 56 virtual void postMessageToClient(int clientID, const WebString& message, Pas sOwnPtr<WebMessagePortChannelArray>) OVERRIDE;
57 57
58 virtual void trace(WebCore::Visitor* visitor) OVERRIDE { WebCore::ServiceWor kerGlobalScopeClient::trace(visitor); } 58 virtual void trace(WebCore::Visitor* visitor) OVERRIDE { WebCore::ServiceWor kerGlobalScopeClient::trace(visitor); }
59 59
60 private: 60 private:
61 ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&); 61 explicit ServiceWorkerGlobalScopeClientImpl(WebServiceWorkerContextClient&);
62 62
63 WebServiceWorkerContextClient& m_client; 63 WebServiceWorkerContextClient& m_client;
64 }; 64 };
65 65
66 } // namespace blink 66 } // namespace blink
67 67
68 #endif // ServiceWorkerGlobalScopeClientImpl_h 68 #endif // ServiceWorkerGlobalScopeClientImpl_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h ('k') | Source/web/ServiceWorkerGlobalScopeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698