Popular sites on the NTP: Try to keep the ordering constant
[chromium-blink-merge.git] / content / public / browser / service_worker_usage_info.cc
blob7ed49860d1e14a72a993afba8babbf2410198d70
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"
7 namespace content {
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