OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 27 matching lines...) Expand all Loading... |
38 #include "WebSharedWorkerClient.h" | 38 #include "WebSharedWorkerClient.h" |
39 #include "core/dom/ExecutionContext.h" | 39 #include "core/dom/ExecutionContext.h" |
40 #include "core/workers/WorkerLoaderProxy.h" | 40 #include "core/workers/WorkerLoaderProxy.h" |
41 #include "core/workers/WorkerReportingProxy.h" | 41 #include "core/workers/WorkerReportingProxy.h" |
42 #include "core/workers/WorkerThread.h" | 42 #include "core/workers/WorkerThread.h" |
43 #include "wtf/PassOwnPtr.h" | 43 #include "wtf/PassOwnPtr.h" |
44 #include "wtf/RefPtr.h" | 44 #include "wtf/RefPtr.h" |
45 #include "wtf/WeakPtr.h" | 45 #include "wtf/WeakPtr.h" |
46 | 46 |
47 | 47 |
48 namespace WebKit { | 48 namespace blink { |
49 class WebApplicationCacheHost; | 49 class WebApplicationCacheHost; |
50 class WebApplicationCacheHostClient; | 50 class WebApplicationCacheHostClient; |
51 class WebWorkerClient; | 51 class WebWorkerClient; |
52 class WebSecurityOrigin; | 52 class WebSecurityOrigin; |
53 class WebString; | 53 class WebString; |
54 class WebURL; | 54 class WebURL; |
55 class WebView; | 55 class WebView; |
56 class WebWorker; | 56 class WebWorker; |
57 class WebSharedWorkerClient; | 57 class WebSharedWorkerClient; |
58 // This class is used by the worker process code to talk to the WebCore::SharedW
orker implementation. | 58 // This class is used by the worker process code to talk to the WebCore::SharedW
orker implementation. |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 RefPtr<WeakReference<WebSharedWorkerClient> > m_client; | 136 RefPtr<WeakReference<WebSharedWorkerClient> > m_client; |
137 | 137 |
138 // Usually WeakPtr is created by WeakPtrFactory exposed by Client | 138 // Usually WeakPtr is created by WeakPtrFactory exposed by Client |
139 // class itself, but here it's implemented by Chrome so we create | 139 // class itself, but here it's implemented by Chrome so we create |
140 // our own WeakPtr. | 140 // our own WeakPtr. |
141 WeakPtr<WebSharedWorkerClient> m_clientWeakPtr; | 141 WeakPtr<WebSharedWorkerClient> m_clientWeakPtr; |
142 | 142 |
143 bool m_pauseWorkerContextOnStart; | 143 bool m_pauseWorkerContextOnStart; |
144 }; | 144 }; |
145 | 145 |
146 } // namespace WebKit | 146 } // namespace blink |
147 | 147 |
148 #endif | 148 #endif |
OLD | NEW |