 Chromium Code Reviews
 Chromium Code Reviews Issue 1371593002:
  Move password manager file names into components  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1371593002:
  Move password manager file names into components  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: chrome/common/chrome_constants.cc | 
| diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc | 
| index 89ae9cd123209e787ca2d16152e7f42afca89b6f..4a1610f6b8400374c319fbb72c0bc129f6ad9633 100644 | 
| --- a/chrome/common/chrome_constants.cc | 
| +++ b/chrome/common/chrome_constants.cc | 
| @@ -4,8 +4,6 @@ | 
| #include "chrome/common/chrome_constants.h" | 
| -#include "base/files/file_path.h" | 
| 
vabr (Chromium)
2015/09/25 07:35:57
This #include is already in the header, so removin
 | 
| - | 
| #define FPL FILE_PATH_LITERAL | 
| #if defined(OS_MACOSX) | 
| @@ -132,8 +130,6 @@ const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); | 
| const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); | 
| // filenames | 
| -const base::FilePath::CharType kAffiliationDatabaseFileName[] = | 
| - FPL("Affiliation Database"); | 
| const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); | 
| const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); | 
| const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 
| @@ -149,7 +145,6 @@ const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 
| const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 
| const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 
| const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 
| -const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 
| const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 
| const base::FilePath::CharType kNetworkPersistentStateFilename[] = | 
| FPL("Network Persistent State"); |