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

Side by Side Diff: components/autofill/content/renderer/password_generation_agent.cc

Issue 2596283002: Include-what-you-use for ThreadTaskRunnerHandle. (Closed)
Patch Set: rebase Created 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/autofill/content/renderer/password_generation_agent.h" 5 #include "components/autofill/content/renderer/password_generation_agent.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/threading/thread_task_runner_handle.h"
11 #include "components/autofill/content/renderer/form_autofill_util.h" 12 #include "components/autofill/content/renderer/form_autofill_util.h"
12 #include "components/autofill/content/renderer/form_classifier.h" 13 #include "components/autofill/content/renderer/form_classifier.h"
13 #include "components/autofill/content/renderer/password_autofill_agent.h" 14 #include "components/autofill/content/renderer/password_autofill_agent.h"
14 #include "components/autofill/content/renderer/password_form_conversion_utils.h" 15 #include "components/autofill/content/renderer/password_form_conversion_utils.h"
15 #include "components/autofill/core/common/autofill_switches.h" 16 #include "components/autofill/core/common/autofill_switches.h"
16 #include "components/autofill/core/common/form_data.h" 17 #include "components/autofill/core/common/form_data.h"
17 #include "components/autofill/core/common/password_form.h" 18 #include "components/autofill/core/common/password_form.h"
18 #include "components/autofill/core/common/password_form_generation_data.h" 19 #include "components/autofill/core/common/password_form_generation_data.h"
19 #include "components/autofill/core/common/password_generation_util.h" 20 #include "components/autofill/core/common/password_generation_util.h"
20 #include "components/autofill/core/common/signatures_util.h" 21 #include "components/autofill/core/common/signatures_util.h"
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 PasswordGenerationAgent::GetPasswordManagerClient() { 582 PasswordGenerationAgent::GetPasswordManagerClient() {
582 if (!password_manager_client_) { 583 if (!password_manager_client_) {
583 render_frame()->GetRemoteAssociatedInterfaces()->GetInterface( 584 render_frame()->GetRemoteAssociatedInterfaces()->GetInterface(
584 &password_manager_client_); 585 &password_manager_client_);
585 } 586 }
586 587
587 return password_manager_client_; 588 return password_manager_client_;
588 } 589 }
589 590
590 } // namespace autofill 591 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698