Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Side by Side Diff: content/public/browser/cache_storage_usage_info.cc

Issue 1297093002: Cache Storage API: Hook up to chrome://settings/cookies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
jam 2015/08/20 22:57:08 to check: is this file needed to avoid clang error
jsbell 2015/08/20 23:46:13 Apparently the ctor can be inlined. Could be becau
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/cache_storage_usage_info.h"
6
7 namespace content {
8
9 CacheStorageUsageInfo::CacheStorageUsageInfo(const GURL& origin,
10 int64 total_size_bytes,
11 const base::Time& last_modified)
12 : origin(origin),
13 total_size_bytes(total_size_bytes),
14 last_modified(last_modified) {}
15
16 CacheStorageUsageInfo::CacheStorageUsageInfo(
17 const CacheStorageUsageInfo& other) = default;
18 CacheStorageUsageInfo::~CacheStorageUsageInfo() = default;
19 CacheStorageUsageInfo& CacheStorageUsageInfo::operator=(
20 const CacheStorageUsageInfo& other) = default;
jam 2015/08/20 22:57:08 we need all these?
jsbell 2015/08/20 23:46:13 Apparently we don't. Removed!
21
22 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/cache_storage_usage_info.h ('k') | content/public/browser/storage_partition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698