OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 virtual void didRequestAutocomplete(PassRefPtr<WebCore::FormState>) OVERRIDE
; | 143 virtual void didRequestAutocomplete(PassRefPtr<WebCore::FormState>) OVERRIDE
; |
144 | 144 |
145 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE; | 145 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE; |
146 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) OVERRID
E; | 146 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) OVERRID
E; |
147 | 147 |
148 virtual void dispatchWillInsertBody() OVERRIDE; | 148 virtual void dispatchWillInsertBody() OVERRIDE; |
149 | 149 |
150 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider(Pas
sOwnPtr<WebServiceWorkerProviderClient>) OVERRIDE; | 150 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider(Pas
sOwnPtr<WebServiceWorkerProviderClient>) OVERRIDE; |
151 virtual WebCore::SharedWorkerRepositoryClient* sharedWorkerRepositoryClient(
) OVERRIDE; | 151 virtual WebCore::SharedWorkerRepositoryClient* sharedWorkerRepositoryClient(
) OVERRIDE; |
152 | 152 |
| 153 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp
plicationCacheHostClient*) OVERRIDE; |
| 154 |
153 virtual void didStopAllLoaders() OVERRIDE; | 155 virtual void didStopAllLoaders() OVERRIDE; |
154 | 156 |
155 private: | 157 private: |
156 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; } | 158 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; } |
157 | 159 |
158 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(WebCore::DocumentLoader
*); | 160 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(WebCore::DocumentLoader
*); |
159 | 161 |
160 // The WebFrame that owns this object and manages its lifetime. Therefore, | 162 // The WebFrame that owns this object and manages its lifetime. Therefore, |
161 // the web frame object is guaranteed to exist. | 163 // the web frame object is guaranteed to exist. |
162 WebFrameImpl* m_webFrame; | 164 WebFrameImpl* m_webFrame; |
163 }; | 165 }; |
164 | 166 |
165 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, WebCore::FrameLoaderClient, client, cli
ent->isFrameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 167 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, WebCore::FrameLoaderClient, client, cli
ent->isFrameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
166 | 168 |
167 } // namespace blink | 169 } // namespace blink |
168 | 170 |
169 #endif | 171 #endif |
OLD | NEW |