summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/autofill/tab_autofill_manager_delegate.h
blob: 020491c1ac182b1e892719f18eba725ed3de08d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_
#define CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_

#include "base/compiler_specific.h"
#include "chrome/browser/autofill/autofill_manager_delegate.h"
#include "chrome/browser/common/web_contents_user_data.h"

namespace content {
class WebContents;
}

// Chrome implementation of AutofillManagerDelegate.
class TabAutofillManagerDelegate
    : public autofill::AutofillManagerDelegate,
      public WebContentsUserData<TabAutofillManagerDelegate> {
 public:
  virtual ~TabAutofillManagerDelegate() {}

  virtual content::BrowserContext* GetBrowserContext() const OVERRIDE;
  virtual content::BrowserContext* GetOriginalBrowserContext() const OVERRIDE;
  virtual Profile* GetOriginalProfile() const OVERRIDE;
  virtual InfoBarService* GetInfoBarService() OVERRIDE;
  virtual PrefServiceBase* GetPrefs() OVERRIDE;
  virtual ProfileSyncServiceBase* GetProfileSyncService() OVERRIDE;
  virtual bool IsSavingPasswordsEnabled() const OVERRIDE;
  virtual void ShowAutofillSettings() OVERRIDE;
  virtual void ShowPasswordGenerationBubble(
      const gfx::Rect& bounds,
      const content::PasswordForm& form,
      autofill::PasswordGenerator* generator) OVERRIDE;

 private:
  explicit TabAutofillManagerDelegate(content::WebContents* web_contents);
  friend class WebContentsUserData<TabAutofillManagerDelegate>;

  content::WebContents* const web_contents_;
};

#endif  // CHROME_BROWSER_UI_AUTOFILL_TAB_AUTOFILL_MANAGER_DELEGATE_H_