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_GNOME_X_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ |
7 #pragma once | |
8 | 7 |
9 #include <gnome-keyring.h> | 8 #include <gnome-keyring.h> |
10 | 9 |
11 #include <string> | 10 #include <string> |
12 | 11 |
13 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
14 #include "base/time.h" | 13 #include "base/time.h" |
15 #include "chrome/browser/password_manager/password_store_factory.h" | 14 #include "chrome/browser/password_manager/password_store_factory.h" |
16 #include "chrome/browser/password_manager/password_store_x.h" | 15 #include "chrome/browser/password_manager/password_store_x.h" |
17 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // The app string, possibly based on the local profile id. | 113 // The app string, possibly based on the local profile id. |
115 std::string app_string_; | 114 std::string app_string_; |
116 | 115 |
117 // True once MigrateToProfileSpecificLogins() has been attempted. | 116 // True once MigrateToProfileSpecificLogins() has been attempted. |
118 bool migrate_tried_; | 117 bool migrate_tried_; |
119 | 118 |
120 DISALLOW_COPY_AND_ASSIGN(NativeBackendGnome); | 119 DISALLOW_COPY_AND_ASSIGN(NativeBackendGnome); |
121 }; | 120 }; |
122 | 121 |
123 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ | 122 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_GNOME_X_H_ |
OLD | NEW |