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