| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_WEBDATA_PASSWORD_WEB_DATA_SERVI
CE_WIN_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_WEBDATA_PASSWORD_WEB_DATA_SERVI
CE_WIN_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_WEBDATA_PASSWORD_WEB_DATA_SERVI
CE_WIN_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_WEBDATA_PASSWORD_WEB_DATA_SERVI
CE_WIN_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 11 #include "base/sequenced_task_runner_helpers.h" | 12 #include "base/sequenced_task_runner_helpers.h" |
| 12 #include "components/webdata/common/web_data_results.h" | 13 #include "components/webdata/common/web_data_results.h" |
| 13 #include "components/webdata/common/web_data_service_base.h" | 14 #include "components/webdata/common/web_data_service_base.h" |
| 14 #include "components/webdata/common/web_data_service_consumer.h" | 15 #include "components/webdata/common/web_data_service_consumer.h" |
| 15 #include "components/webdata/common/web_database.h" | 16 #include "components/webdata/common/web_database.h" |
| 16 | 17 |
| 17 struct IE7PasswordInfo; | 18 struct IE7PasswordInfo; |
| 18 class WebDatabaseService; | 19 class WebDatabaseService; |
| 19 | 20 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 WebDatabase* db); | 67 WebDatabase* db); |
| 67 WebDatabase::State RemoveIE7LoginImpl(const IE7PasswordInfo& info, | 68 WebDatabase::State RemoveIE7LoginImpl(const IE7PasswordInfo& info, |
| 68 WebDatabase* db); | 69 WebDatabase* db); |
| 69 scoped_ptr<WDTypedResult> GetIE7LoginImpl(const IE7PasswordInfo& info, | 70 scoped_ptr<WDTypedResult> GetIE7LoginImpl(const IE7PasswordInfo& info, |
| 70 WebDatabase* db); | 71 WebDatabase* db); |
| 71 | 72 |
| 72 DISALLOW_COPY_AND_ASSIGN(PasswordWebDataService); | 73 DISALLOW_COPY_AND_ASSIGN(PasswordWebDataService); |
| 73 }; | 74 }; |
| 74 | 75 |
| 75 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_WEBDATA_PASSWORD_WEB_DATA_SE
RVICE_WIN_H_ | 76 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_WEBDATA_PASSWORD_WEB_DATA_SE
RVICE_WIN_H_ |
| OLD | NEW |