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.
5 #include "content/public/browser/service_worker_usage_info.h"
9 ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL
& origin
,
10 const std::vector
<GURL
>& scopes
)
11 : origin(origin
), scopes(scopes
), total_size_bytes(0) {
14 ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL
& origin
)
15 : origin(origin
), total_size_bytes(0) {
18 ServiceWorkerUsageInfo::ServiceWorkerUsageInfo() : total_size_bytes(0) {
21 ServiceWorkerUsageInfo::~ServiceWorkerUsageInfo() {
24 } // namespace content