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

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

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | 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 30 matching lines...) Expand all
41 #include "wtf/Forward.h" 41 #include "wtf/Forward.h"
42 #include "wtf/PassRefPtr.h" 42 #include "wtf/PassRefPtr.h"
43 #include "wtf/RefCounted.h" 43 #include "wtf/RefCounted.h"
44 #include "wtf/RefPtr.h" 44 #include "wtf/RefPtr.h"
45 45
46 namespace blink { 46 namespace blink {
47 class WebServiceWorkerProvider; 47 class WebServiceWorkerProvider;
48 class WebServiceWorker; 48 class WebServiceWorker;
49 } 49 }
50 50
51 namespace WebCore { 51 namespace blink {
52 52
53 class Dictionary; 53 class Dictionary;
54 class ExecutionContext; 54 class ExecutionContext;
55 class ServiceWorker; 55 class ServiceWorker;
56 56
57 class ServiceWorkerContainer FINAL 57 class ServiceWorkerContainer FINAL
58 : public RefCountedWillBeGarbageCollectedFinalized<ServiceWorkerContainer> 58 : public RefCountedWillBeGarbageCollectedFinalized<ServiceWorkerContainer>
59 , public ScriptWrappable 59 , public ScriptWrappable
60 , public ContextLifecycleObserver 60 , public ContextLifecycleObserver
61 , public blink::WebServiceWorkerProviderClient { 61 , public blink::WebServiceWorkerProviderClient {
(...skipping 30 matching lines...) Expand all
92 void checkReadyChanged(PassRefPtrWillBeRawPtr<ServiceWorker> previousReadyWo rker); 92 void checkReadyChanged(PassRefPtrWillBeRawPtr<ServiceWorker> previousReadyWo rker);
93 93
94 blink::WebServiceWorkerProvider* m_provider; 94 blink::WebServiceWorkerProvider* m_provider;
95 RefPtrWillBeMember<ServiceWorker> m_active; 95 RefPtrWillBeMember<ServiceWorker> m_active;
96 RefPtrWillBeMember<ServiceWorker> m_controller; 96 RefPtrWillBeMember<ServiceWorker> m_controller;
97 RefPtrWillBeMember<ServiceWorker> m_installing; 97 RefPtrWillBeMember<ServiceWorker> m_installing;
98 RefPtrWillBeMember<ServiceWorker> m_waiting; 98 RefPtrWillBeMember<ServiceWorker> m_waiting;
99 RefPtrWillBeMember<ReadyProperty> m_ready; 99 RefPtrWillBeMember<ReadyProperty> m_ready;
100 }; 100 };
101 101
102 } // namespace WebCore 102 } // namespace blink
103 103
104 #endif // ServiceWorkerContainer_h 104 #endif // ServiceWorkerContainer_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerClients.cpp ('k') | Source/modules/serviceworkers/ServiceWorkerContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698