Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: components/password_manager/core/browser/webdata/password_web_data_service_win.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698