 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: components/password_manager/core/browser/password_manager_constants.cc | 
| diff --git a/components/password_manager/core/browser/password_manager_constants.cc b/components/password_manager/core/browser/password_manager_constants.cc | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..bd2969df8df21ac0341f86ad52577535cd556477 | 
| --- /dev/null | 
| +++ b/components/password_manager/core/browser/password_manager_constants.cc | 
| @@ -0,0 +1,14 @@ | 
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 
Lei Zhang
2015/09/25 07:52:38
no (c), 2015
 
vabr (Chromium)
2015/09/25 08:30:46
Done.
 | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#include "components/password_manager/core/browser/password_manager_constants.h" | 
| + | 
| +namespace password_manager { | 
| + | 
| +const base::FilePath::CharType kAffiliationDatabaseFileName[] = | 
| + FILE_PATH_LITERAL("Affiliation Database"); | 
| +const base::FilePath::CharType kLoginDataFileName[] = | 
| + FILE_PATH_LITERAL("Login Data"); | 
| + | 
| +} // namespace password_manager |