| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 TargetIsFontResource = 5, | 74 TargetIsFontResource = 5, |
| 75 TargetIsImage = 6, | 75 TargetIsImage = 6, |
| 76 TargetIsObject = 7, | 76 TargetIsObject = 7, |
| 77 TargetIsMedia = 8, | 77 TargetIsMedia = 8, |
| 78 TargetIsWorker = 9, | 78 TargetIsWorker = 9, |
| 79 TargetIsSharedWorker = 10, | 79 TargetIsSharedWorker = 10, |
| 80 TargetIsPrefetch = 11, | 80 TargetIsPrefetch = 11, |
| 81 TargetIsFavicon = 12, | 81 TargetIsFavicon = 12, |
| 82 TargetIsXHR = 13, | 82 TargetIsXHR = 13, |
| 83 TargetIsTextTrack = 14, | 83 TargetIsTextTrack = 14, |
| 84 TargetIsUnspecified = 15, | 84 TargetIsServiceWorker = 15, |
| 85 TargetIsUnspecified = 16, |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 class ExtraData { | 88 class ExtraData { |
| 88 public: | 89 public: |
| 89 virtual ~ExtraData() { } | 90 virtual ~ExtraData() { } |
| 90 }; | 91 }; |
| 91 | 92 |
| 92 ~WebURLRequest() { reset(); } | 93 ~WebURLRequest() { reset(); } |
| 93 | 94 |
| 94 WebURLRequest() : m_private(0) { } | 95 WebURLRequest() : m_private(0) { } |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 protected: | 201 protected: |
| 201 BLINK_PLATFORM_EXPORT void assign(WebURLRequestPrivate*); | 202 BLINK_PLATFORM_EXPORT void assign(WebURLRequestPrivate*); |
| 202 | 203 |
| 203 private: | 204 private: |
| 204 WebURLRequestPrivate* m_private; | 205 WebURLRequestPrivate* m_private; |
| 205 }; | 206 }; |
| 206 | 207 |
| 207 } // namespace blink | 208 } // namespace blink |
| 208 | 209 |
| 209 #endif | 210 #endif |
| OLD | NEW |