| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "public/web/WebDevToolsAgentClient.h" | 42 #include "public/web/WebDevToolsAgentClient.h" |
| 43 #include "public/web/WebFrameClient.h" | 43 #include "public/web/WebFrameClient.h" |
| 44 #include "public/web/WebSharedWorkerClient.h" | 44 #include "public/web/WebSharedWorkerClient.h" |
| 45 #include "wtf/PassOwnPtr.h" | 45 #include "wtf/PassOwnPtr.h" |
| 46 #include "wtf/RefPtr.h" | 46 #include "wtf/RefPtr.h" |
| 47 #include "wtf/WeakPtr.h" | 47 #include "wtf/WeakPtr.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class ConsoleMessage; | 51 class ConsoleMessage; |
| 52 class ResourceResponse; | |
| 53 class WebApplicationCacheHost; | 52 class WebApplicationCacheHost; |
| 54 class WebApplicationCacheHostClient; | 53 class WebApplicationCacheHostClient; |
| 55 class WebWorkerClient; | |
| 56 class WebSecurityOrigin; | |
| 57 class WebString; | 54 class WebString; |
| 58 class WebURL; | 55 class WebURL; |
| 59 class WebView; | 56 class WebView; |
| 60 class WebWorker; | |
| 61 class WebSharedWorkerClient; | 57 class WebSharedWorkerClient; |
| 62 class WorkerInspectorProxy; | 58 class WorkerInspectorProxy; |
| 63 | 59 |
| 64 // This class is used by the worker process code to talk to the SharedWorker imp
lementation. | 60 // This class is used by the worker process code to talk to the SharedWorker imp
lementation. |
| 65 // It can't use it directly since it uses WebKit types, so this class converts t
he data types. | 61 // It can't use it directly since it uses WebKit types, so this class converts t
he data types. |
| 66 // When the SharedWorker object wants to call WorkerReportingProxy, this class w
ill | 62 // When the SharedWorker object wants to call WorkerReportingProxy, this class w
ill |
| 67 // convert to Chrome data types first and then call the supplied WebCommonWorker
Client. | 63 // convert to Chrome data types first and then call the supplied WebCommonWorker
Client. |
| 68 class WebSharedWorkerImpl final | 64 class WebSharedWorkerImpl final |
| 69 : public WorkerReportingProxy | 65 : public WorkerReportingProxy |
| 70 , public WorkerLoaderProxy | 66 , public WorkerLoaderProxy |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 OwnPtr<Loader> m_mainScriptLoader; | 159 OwnPtr<Loader> m_mainScriptLoader; |
| 164 WebURL m_url; | 160 WebURL m_url; |
| 165 WebString m_name; | 161 WebString m_name; |
| 166 WebString m_contentSecurityPolicy; | 162 WebString m_contentSecurityPolicy; |
| 167 WebContentSecurityPolicyType m_policyType; | 163 WebContentSecurityPolicyType m_policyType; |
| 168 }; | 164 }; |
| 169 | 165 |
| 170 } // namespace blink | 166 } // namespace blink |
| 171 | 167 |
| 172 #endif | 168 #endif |
| OLD | NEW |