OLD | NEW |
---|---|
(Empty) | |
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 #ifndef COMPONENTS_WEB_CACHE_COMMON_PREF_NAMES_H_ | |
6 #define COMPONENTS_WEB_CACHE_COMMON_PREF_NAMES_H_ | |
7 | |
8 namespace web_cache { | |
9 namespace prefs { | |
10 | |
11 // Alphabetical list of preference names specific to the web_cache component. | |
12 // Keep alphabetized, and document each in the .cc file. | |
13 | |
14 extern const char kMemoryCacheSize[]; | |
James Cook
2014/09/05 16:53:18
Can this go away?
Xi Han
2014/09/05 19:39:25
Yeas, both prefs_names.h and prefs_names.cc are go
| |
15 | |
16 } // namespace prefs | |
17 } // namespace web_cache | |
18 | |
19 #endif // COMPONENTS_WEB_CACHE_COMMON_PREF_NAMES_H_ | |
OLD | NEW |