| 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 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebDataSourceImpl_h | 31 #ifndef WebDataSourceImpl_h |
| 32 #define WebDataSourceImpl_h | 32 #define WebDataSourceImpl_h |
| 33 | 33 |
| 34 #include "DocumentLoader.h" | 34 #include "DocumentLoader.h" |
| 35 #include "KURL.h" | 35 #include "KURL.h" |
| 36 #include "WebDataSource.h" | 36 #include "WebDataSource.h" |
| 37 #include "WebPluginLoadObserver.h" | 37 #include "WebPluginLoadObserver.h" |
| 38 #include "WrappedResourceRequest.h" | 38 #include "core/platform/chromium/support/WrappedResourceRequest.h" |
| 39 #include "WrappedResourceResponse.h" | 39 #include "core/platform/chromium/support/WrappedResourceResponse.h" |
| 40 #include <wtf/OwnPtr.h> | 40 #include <wtf/OwnPtr.h> |
| 41 #include <wtf/PassOwnPtr.h> | 41 #include <wtf/PassOwnPtr.h> |
| 42 #include <wtf/Vector.h> | 42 #include <wtf/Vector.h> |
| 43 | 43 |
| 44 namespace WebKit { | 44 namespace WebKit { |
| 45 | 45 |
| 46 class WebPluginLoadObserver; | 46 class WebPluginLoadObserver; |
| 47 | 47 |
| 48 class WebDataSourceImpl : public WebCore::DocumentLoader, public WebDataSource { | 48 class WebDataSourceImpl : public WebCore::DocumentLoader, public WebDataSource { |
| 49 public: | 49 public: |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 // description of who modifies this when to keep it up to date. | 99 // description of who modifies this when to keep it up to date. |
| 100 Vector<WebCore::KURL> m_redirectChain; | 100 Vector<WebCore::KURL> m_redirectChain; |
| 101 | 101 |
| 102 OwnPtr<ExtraData> m_extraData; | 102 OwnPtr<ExtraData> m_extraData; |
| 103 OwnPtr<WebPluginLoadObserver> m_pluginLoadObserver; | 103 OwnPtr<WebPluginLoadObserver> m_pluginLoadObserver; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace WebKit | 106 } // namespace WebKit |
| 107 | 107 |
| 108 #endif // WebDataSourceImpl_h | 108 #endif // WebDataSourceImpl_h |
| OLD | NEW |