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_NATIVE_BACKEND_KWALLET_X_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_KWALLET_X_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_KWALLET_X_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_KWALLET_X_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
13 #include "base/time.h" | 12 #include "base/time.h" |
14 #include "chrome/browser/password_manager/password_store_factory.h" | 13 #include "chrome/browser/password_manager/password_store_factory.h" |
15 #include "chrome/browser/password_manager/password_store_x.h" | 14 #include "chrome/browser/password_manager/password_store_x.h" |
16 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
17 | 16 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 183 |
185 // The name of the wallet we've opened. Set during Init(). | 184 // The name of the wallet we've opened. Set during Init(). |
186 std::string wallet_name_; | 185 std::string wallet_name_; |
187 // The application name (e.g. "Chromium"), shown in KWallet auth dialogs. | 186 // The application name (e.g. "Chromium"), shown in KWallet auth dialogs. |
188 const std::string app_name_; | 187 const std::string app_name_; |
189 | 188 |
190 DISALLOW_COPY_AND_ASSIGN(NativeBackendKWallet); | 189 DISALLOW_COPY_AND_ASSIGN(NativeBackendKWallet); |
191 }; | 190 }; |
192 | 191 |
193 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_KWALLET_X_H_ | 192 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_KWALLET_X_H_ |
OLD | NEW |