| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "build/build_config.h" |
| 12 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv
ice_factory.h" | 13 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv
ice_factory.h" |
| 13 #include "components/keyed_service/core/service_access_type.h" | 14 #include "components/keyed_service/core/service_access_type.h" |
| 14 | 15 |
| 15 #if defined(USE_X11) | 16 #if defined(USE_X11) |
| 16 #include "base/nix/xdg_util.h" | 17 #include "base/nix/xdg_util.h" |
| 17 #endif | 18 #endif |
| 18 | 19 |
| 19 class Profile; | 20 class Profile; |
| 20 | 21 |
| 21 namespace password_manager { | 22 namespace password_manager { |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 static base::nix::DesktopEnvironment GetDesktopEnvironment(); | 100 static base::nix::DesktopEnvironment GetDesktopEnvironment(); |
| 100 static void RecordBackendStatistics(base::nix::DesktopEnvironment desktop_env, | 101 static void RecordBackendStatistics(base::nix::DesktopEnvironment desktop_env, |
| 101 const std::string& command_line_flag, | 102 const std::string& command_line_flag, |
| 102 LinuxBackendUsed used_backend); | 103 LinuxBackendUsed used_backend); |
| 103 #endif | 104 #endif |
| 104 | 105 |
| 105 DISALLOW_COPY_AND_ASSIGN(PasswordStoreFactory); | 106 DISALLOW_COPY_AND_ASSIGN(PasswordStoreFactory); |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ | 109 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ |
| OLD | NEW |