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/public/browser/service_worker_usage_info.h" 6 7 namespace content { 8 ServiceWorkerUsageInfo(const GURL & origin,const std::vector<GURL> & scopes)9ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL& origin, 10 const std::vector<GURL>& scopes) 11 : origin(origin), scopes(scopes) { 12 } 13 ServiceWorkerUsageInfo(const GURL & origin)14ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL& origin) 15 : origin(origin) { 16 } 17 ServiceWorkerUsageInfo()18ServiceWorkerUsageInfo::ServiceWorkerUsageInfo() { 19 } 20 ~ServiceWorkerUsageInfo()21ServiceWorkerUsageInfo::~ServiceWorkerUsageInfo() { 22 } 23 24 } // namespace content 25