Make |track_| in MediaStreamTrack const. and a couple of other cosmetic changes.
[chromium-blink-merge.git] / components / password_manager / content / browser / content_password_manager_driver.h
blobc6b64f6fb5bba37d27c80c2c46b9b17bf33ff4a1
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRIVER_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRIVER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "components/password_manager/core/browser/password_autofill_manager.h"
11 #include "components/password_manager/core/browser/password_generation_manager.h"
12 #include "components/password_manager/core/browser/password_manager.h"
13 #include "components/password_manager/core/browser/password_manager_driver.h"
14 #include "content/public/browser/web_contents_observer.h"
16 namespace autofill {
17 class AutofillManager;
18 struct PasswordForm;
21 namespace content {
22 class WebContents;
25 namespace password_manager {
27 class ContentPasswordManagerDriver : public PasswordManagerDriver,
28 public content::WebContentsObserver {
29 public:
30 ContentPasswordManagerDriver(content::WebContents* web_contents,
31 PasswordManagerClient* client,
32 autofill::AutofillClient* autofill_client);
33 ~ContentPasswordManagerDriver() override;
35 // PasswordManagerDriver implementation.
36 void FillPasswordForm(
37 const autofill::PasswordFormFillData& form_data) override;
38 bool DidLastPageLoadEncounterSSLErrors() override;
39 bool IsOffTheRecord() override;
40 void AllowPasswordGenerationForForm(
41 const autofill::PasswordForm& form) override;
42 void AccountCreationFormsFound(
43 const std::vector<autofill::FormData>& forms) override;
44 void FillSuggestion(const base::string16& username,
45 const base::string16& password) override;
46 void PreviewSuggestion(const base::string16& username,
47 const base::string16& password) override;
48 void ClearPreviewedForm() override;
50 PasswordGenerationManager* GetPasswordGenerationManager() override;
51 PasswordManager* GetPasswordManager() override;
52 autofill::AutofillManager* GetAutofillManager() override;
53 PasswordAutofillManager* GetPasswordAutofillManager() override;
55 // content::WebContentsObserver overrides.
56 bool OnMessageReceived(const IPC::Message& message) override;
57 void DidNavigateMainFrame(
58 const content::LoadCommittedDetails& details,
59 const content::FrameNavigateParams& params) override;
61 private:
62 PasswordManager password_manager_;
63 PasswordGenerationManager password_generation_manager_;
64 PasswordAutofillManager password_autofill_manager_;
66 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver);
69 } // namespace password_manager
71 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRIVER_H_