| Index: net/tools/crash_cache/crash_cache.cc
 | 
| diff --git a/net/tools/crash_cache/crash_cache.cc b/net/tools/crash_cache/crash_cache.cc
 | 
| index 60d71583018f368db40f79386116f83cf8fa8012..34eaafabf4b7b1bb8b61204defae3c93d531754b 100644
 | 
| --- a/net/tools/crash_cache/crash_cache.cc
 | 
| +++ b/net/tools/crash_cache/crash_cache.cc
 | 
| @@ -84,12 +84,12 @@ namespace disk_cache {
 | 
|  NET_EXPORT_PRIVATE extern RankCrashes g_rankings_crash;
 | 
|  }
 | 
|  
 | 
| -const char* kCrashEntryName = "the first key";
 | 
| +const char kCrashEntryName[] = "the first key";
 | 
|  
 | 
|  // Creates the destinaton folder for this run, and returns it on full_path.
 | 
|  bool CreateTargetFolder(const base::FilePath& path, RankCrashes action,
 | 
|                          base::FilePath* full_path) {
 | 
| -  const char* folders[] = {
 | 
| +  const char* const folders[] = {
 | 
|      "",
 | 
|      "insert_empty1",
 | 
|      "insert_empty2",
 | 
| 
 |