Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |