| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 virtual void updateInspectorStateCookie(const WTF::String&) OVERRIDE; | 82 virtual void updateInspectorStateCookie(const WTF::String&) OVERRIDE; |
| 83 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE; | 83 virtual void workerGlobalScopeStarted(WebCore::WorkerGlobalScope*) OVERRIDE; |
| 84 virtual void workerGlobalScopeClosed() OVERRIDE; | 84 virtual void workerGlobalScopeClosed() OVERRIDE; |
| 85 virtual void workerGlobalScopeDestroyed() OVERRIDE; | 85 virtual void workerGlobalScopeDestroyed() OVERRIDE; |
| 86 | 86 |
| 87 // WebCore::WorkerLoaderProxy methods: | 87 // WebCore::WorkerLoaderProxy methods: |
| 88 virtual void postTaskToLoader(PassOwnPtr<WebCore::ExecutionContextTask>) OVE
RRIDE; | 88 virtual void postTaskToLoader(PassOwnPtr<WebCore::ExecutionContextTask>) OVE
RRIDE; |
| 89 virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<WebCore::ExecutionContex
tTask>) OVERRIDE; | 89 virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<WebCore::ExecutionContex
tTask>) OVERRIDE; |
| 90 | 90 |
| 91 // WebFrameClient methods to support resource loading thru the 'shadow page'
. | 91 // WebFrameClient methods to support resource loading thru the 'shadow page'
. |
| 92 virtual WebApplicationCacheHost* createApplicationCacheHost(WebFrame*, WebAp
plicationCacheHostClient*) OVERRIDE; | 92 virtual WebApplicationCacheHost* createApplicationCacheHost(WebLocalFrame*,
WebApplicationCacheHostClient*) OVERRIDE; |
| 93 virtual void didFinishDocumentLoad(WebFrame*) OVERRIDE; | 93 virtual void didFinishDocumentLoad(WebLocalFrame*) OVERRIDE; |
| 94 | 94 |
| 95 // WebSharedWorker methods: | 95 // WebSharedWorker methods: |
| 96 virtual void startWorkerContext(const WebURL&, const WebString& name, const
WebString& contentSecurityPolicy, WebContentSecurityPolicyType) OVERRIDE; | 96 virtual void startWorkerContext(const WebURL&, const WebString& name, const
WebString& contentSecurityPolicy, WebContentSecurityPolicyType) OVERRIDE; |
| 97 virtual void connect(WebMessagePortChannel*) OVERRIDE; | 97 virtual void connect(WebMessagePortChannel*) OVERRIDE; |
| 98 virtual void terminateWorkerContext() OVERRIDE; | 98 virtual void terminateWorkerContext() OVERRIDE; |
| 99 virtual void clientDestroyed() OVERRIDE; | 99 virtual void clientDestroyed() OVERRIDE; |
| 100 | 100 |
| 101 virtual void pauseWorkerContextOnStart() OVERRIDE; | 101 virtual void pauseWorkerContextOnStart() OVERRIDE; |
| 102 virtual void resumeWorkerContext() OVERRIDE; | 102 virtual void resumeWorkerContext() OVERRIDE; |
| 103 virtual void attachDevTools() OVERRIDE; | 103 virtual void attachDevTools() OVERRIDE; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 OwnPtr<Loader> m_mainScriptLoader; | 152 OwnPtr<Loader> m_mainScriptLoader; |
| 153 WebURL m_url; | 153 WebURL m_url; |
| 154 WebString m_name; | 154 WebString m_name; |
| 155 WebString m_contentSecurityPolicy; | 155 WebString m_contentSecurityPolicy; |
| 156 WebContentSecurityPolicyType m_policyType; | 156 WebContentSecurityPolicyType m_policyType; |
| 157 }; | 157 }; |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| 160 | 160 |
| 161 #endif | 161 #endif |
| OLD | NEW |