| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "public/platform/WebServiceWorkerRequest.h" | 6 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" |
| 7 | 7 |
| 8 #include "platform/blob/BlobData.h" | 8 #include "platform/blob/BlobData.h" |
| 9 #include "platform/weborigin/KURL.h" | 9 #include "platform/weborigin/KURL.h" |
| 10 #include "public/platform/WebHTTPHeaderVisitor.h" | 10 #include "public/platform/WebHTTPHeaderVisitor.h" |
| 11 #include "public/platform/WebURLRequest.h" | 11 #include "public/platform/WebURLRequest.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class WebServiceWorkerRequestPrivate : public RefCounted<WebServiceWorkerRequest
Private> { | 15 class WebServiceWorkerRequestPrivate : public RefCounted<WebServiceWorkerRequest
Private> { |
| 16 public: | 16 public: |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 { | 182 { |
| 183 m_private->m_isReload = isReload; | 183 m_private->m_isReload = isReload; |
| 184 } | 184 } |
| 185 | 185 |
| 186 bool WebServiceWorkerRequest::isReload() const | 186 bool WebServiceWorkerRequest::isReload() const |
| 187 { | 187 { |
| 188 return m_private->m_isReload; | 188 return m_private->m_isReload; |
| 189 } | 189 } |
| 190 | 190 |
| 191 } // namespace blink | 191 } // namespace blink |
| OLD | NEW |