OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2011 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 class ResourceResponse; | 43 class ResourceResponse; |
44 | 44 |
45 template <typename T> class Timer; | 45 template <typename T> class Timer; |
46 | 46 |
47 class ResourceHandle : public RefCounted<ResourceHandle> { | 47 class ResourceHandle : public RefCounted<ResourceHandle> { |
48 public: | 48 public: |
49 static PassRefPtr<ResourceHandle> create(NetworkingContext*, const ResourceR
equest&, ResourceHandleClient*, bool defersLoading, bool shouldContentSniff); | 49 static PassRefPtr<ResourceHandle> create(NetworkingContext*, const ResourceR
equest&, ResourceHandleClient*, bool defersLoading, bool shouldContentSniff); |
50 static void loadResourceSynchronously(NetworkingContext*, const ResourceRequ
est&, StoredCredentials, ResourceError&, ResourceResponse&, Vector<char>& data); | 50 static void loadResourceSynchronously(NetworkingContext*, const ResourceRequ
est&, StoredCredentials, ResourceError&, ResourceResponse&, Vector<char>& data); |
51 | 51 |
52 static void cacheMetadata(const ResourceResponse&, const Vector<char>&); | 52 static void cacheMetadata(const ResourceResponse&, const Vector<char>&); |
| 53 static bool parseDataUrl(const KURL& url, String&, String&, Vector<char>&); |
53 | 54 |
54 virtual ~ResourceHandle(); | 55 virtual ~ResourceHandle(); |
55 | 56 |
56 virtual void cancel(); | 57 virtual void cancel(); |
57 | 58 |
58 // The client may be 0, in which case no callbacks will be made. | 59 // The client may be 0, in which case no callbacks will be made. |
59 ResourceHandleClient* client() const; | 60 ResourceHandleClient* client() const; |
60 void setClient(ResourceHandleClient*); | 61 void setClient(ResourceHandleClient*); |
61 | 62 |
62 void setDefersLoading(bool); | 63 void setDefersLoading(bool); |
(...skipping 15 matching lines...) Expand all Loading... |
78 | 79 |
79 private: | 80 private: |
80 bool start(); | 81 bool start(); |
81 friend class ResourceHandleInternal; | 82 friend class ResourceHandleInternal; |
82 OwnPtr<ResourceHandleInternal> d; | 83 OwnPtr<ResourceHandleInternal> d; |
83 }; | 84 }; |
84 | 85 |
85 } | 86 } |
86 | 87 |
87 #endif // ResourceHandle_h | 88 #endif // ResourceHandle_h |
OLD | NEW |