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

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

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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 #include "components/password_manager/core/browser/webdata/password_web_data_ser vice_win.h" 5 #include "components/password_manager/core/browser/webdata/password_web_data_ser vice_win.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/single_thread_task_runner.h"
8 #include "components/os_crypt/ie7_password_win.h" 9 #include "components/os_crypt/ie7_password_win.h"
9 #include "components/password_manager/core/browser/webdata/logins_table.h" 10 #include "components/password_manager/core/browser/webdata/logins_table.h"
10 #include "components/webdata/common/web_database_service.h" 11 #include "components/webdata/common/web_database_service.h"
11 12
12 PasswordWebDataService::PasswordWebDataService( 13 PasswordWebDataService::PasswordWebDataService(
13 scoped_refptr<WebDatabaseService> wdbs, 14 scoped_refptr<WebDatabaseService> wdbs,
14 scoped_refptr<base::SingleThreadTaskRunner> ui_thread, 15 scoped_refptr<base::SingleThreadTaskRunner> ui_thread,
15 const ProfileErrorCallback& callback) 16 const ProfileErrorCallback& callback)
16 : WebDataServiceBase(wdbs, callback, ui_thread) { 17 : WebDataServiceBase(wdbs, callback, ui_thread) {
17 } 18 }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 63
63 //////////////////////////////////////////////////////////////////////////////// 64 ////////////////////////////////////////////////////////////////////////////////
64 65
65 PasswordWebDataService::PasswordWebDataService( 66 PasswordWebDataService::PasswordWebDataService(
66 scoped_refptr<base::SingleThreadTaskRunner> ui_thread) 67 scoped_refptr<base::SingleThreadTaskRunner> ui_thread)
67 : WebDataServiceBase(nullptr, ProfileErrorCallback(), ui_thread) { 68 : WebDataServiceBase(nullptr, ProfileErrorCallback(), ui_thread) {
68 } 69 }
69 70
70 PasswordWebDataService::~PasswordWebDataService() { 71 PasswordWebDataService::~PasswordWebDataService() {
71 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698