OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/child/service_worker/web_service_worker_registration_impl.h" |
| 6 |
| 7 #include "content/common/service_worker/service_worker_types.h" |
| 8 |
| 9 namespace content { |
| 10 |
| 11 WebServiceWorkerRegistrationImpl::WebServiceWorkerRegistrationImpl( |
| 12 const ServiceWorkerObjectInfo& info) |
| 13 : scope_(info.scope) { |
| 14 } |
| 15 |
| 16 WebServiceWorkerRegistrationImpl::~WebServiceWorkerRegistrationImpl() { |
| 17 } |
| 18 |
| 19 blink::WebURL WebServiceWorkerRegistrationImpl::scope() const { |
| 20 return scope_; |
| 21 } |
| 22 |
| 23 } // namespace content |
OLD | NEW |