blob: fdc3830b85201dc962fd5f13012c76f74d9f5e90 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/browser/service_worker_usage_info.h"
namespace content {
ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL& origin,
const std::vector<GURL>& scopes)
: origin(origin), scopes(scopes) {}
ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL& origin)
: origin(origin) {}
ServiceWorkerUsageInfo::ServiceWorkerUsageInfo() : total_size_bytes(0) {
}
ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(
const ServiceWorkerUsageInfo& other) = default;
ServiceWorkerUsageInfo::~ServiceWorkerUsageInfo() {
}
} // namespace content