Chromium Code Reviews

Side by Side Diff: net/disk_cache/disk_cache.cc

Issue 542733002: Remove void** from disk_cache interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more more explicit constructor Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 // Copyright (c) 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 "net/disk_cache/disk_cache.h"
6
7 namespace disk_cache {
8
9 Backend::EnumerationState::~EnumerationState() {}
rvargas (doing something else) 2014/09/05 02:01:29 I think I'm missing something here. Why this file?
gavinp 2014/09/11 23:57:04 See http://www.chromium.org/developers/coding-styl
10
11 Backend::~Backend() {}
12
13 Entry::~Entry() {}
14
15 } // namespace disk_cache
OLDNEW

Powered by Google App Engine