| 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 20 matching lines...) Expand all Loading... |
| 31 #ifndef WebURLResponse_h | 31 #ifndef WebURLResponse_h |
| 32 #define WebURLResponse_h | 32 #define WebURLResponse_h |
| 33 | 33 |
| 34 #include "WebCommon.h" | 34 #include "WebCommon.h" |
| 35 #include "WebPrivateOwnPtr.h" | 35 #include "WebPrivateOwnPtr.h" |
| 36 | 36 |
| 37 #if INSIDE_BLINK | 37 #if INSIDE_BLINK |
| 38 namespace WebCore { class ResourceResponse; } | 38 namespace WebCore { class ResourceResponse; } |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 namespace WebKit { | 41 namespace blink { |
| 42 | 42 |
| 43 class WebCString; | 43 class WebCString; |
| 44 class WebHTTPHeaderVisitor; | 44 class WebHTTPHeaderVisitor; |
| 45 class WebHTTPLoadInfo; | 45 class WebHTTPLoadInfo; |
| 46 class WebString; | 46 class WebString; |
| 47 class WebURL; | 47 class WebURL; |
| 48 class WebURLLoadTiming; | 48 class WebURLLoadTiming; |
| 49 class WebURLResponsePrivate; | 49 class WebURLResponsePrivate; |
| 50 | 50 |
| 51 class WebURLResponse { | 51 class WebURLResponse { |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 BLINK_PLATFORM_EXPORT ExtraData* extraData() const; | 193 BLINK_PLATFORM_EXPORT ExtraData* extraData() const; |
| 194 BLINK_PLATFORM_EXPORT void setExtraData(ExtraData*); | 194 BLINK_PLATFORM_EXPORT void setExtraData(ExtraData*); |
| 195 | 195 |
| 196 protected: | 196 protected: |
| 197 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); | 197 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); |
| 198 | 198 |
| 199 private: | 199 private: |
| 200 WebURLResponsePrivate* m_private; | 200 WebURLResponsePrivate* m_private; |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 } // namespace WebKit | 203 } // namespace blink |
| 204 | 204 |
| 205 #endif | 205 #endif |
| OLD | NEW |