| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 WEBKIT_API double lastModifiedDate() const; | 94 WEBKIT_API double lastModifiedDate() const; |
| 95 WEBKIT_API void setLastModifiedDate(double); | 95 WEBKIT_API void setLastModifiedDate(double); |
| 96 | 96 |
| 97 WEBKIT_API bool isContentFiltered() const; | 97 WEBKIT_API bool isContentFiltered() const; |
| 98 WEBKIT_API void setIsContentFiltered(bool); | 98 WEBKIT_API void setIsContentFiltered(bool); |
| 99 | 99 |
| 100 WEBKIT_API long long appCacheID() const; | 100 WEBKIT_API long long appCacheID() const; |
| 101 WEBKIT_API void setAppCacheID(long long); | 101 WEBKIT_API void setAppCacheID(long long); |
| 102 | 102 |
| 103 WEBKIT_API WebURL appCacheManifestURL() const; |
| 104 WEBKIT_API void setAppCacheManifestURL(const WebURL&); |
| 105 |
| 103 // A consumer controlled value intended to be used to record opaque | 106 // A consumer controlled value intended to be used to record opaque |
| 104 // security info related to this request. | 107 // security info related to this request. |
| 105 WEBKIT_API WebCString securityInfo() const; | 108 WEBKIT_API WebCString securityInfo() const; |
| 106 WEBKIT_API void setSecurityInfo(const WebCString&); | 109 WEBKIT_API void setSecurityInfo(const WebCString&); |
| 107 | 110 |
| 108 #if defined(WEBKIT_IMPLEMENTATION) | 111 #if defined(WEBKIT_IMPLEMENTATION) |
| 109 WebCore::ResourceResponse& toMutableResourceResponse(); | 112 WebCore::ResourceResponse& toMutableResourceResponse(); |
| 110 const WebCore::ResourceResponse& toResourceResponse() const; | 113 const WebCore::ResourceResponse& toResourceResponse() const; |
| 111 #endif | 114 #endif |
| 112 | 115 |
| 113 protected: | 116 protected: |
| 114 void assign(WebURLResponsePrivate*); | 117 void assign(WebURLResponsePrivate*); |
| 115 | 118 |
| 116 private: | 119 private: |
| 117 WebURLResponsePrivate* m_private; | 120 WebURLResponsePrivate* m_private; |
| 118 }; | 121 }; |
| 119 | 122 |
| 120 } // namespace WebKit | 123 } // namespace WebKit |
| 121 | 124 |
| 122 #endif | 125 #endif |
| OLD | NEW |