blob: a652f871902f6e7399a8549c93b9f79b2ba50a63 [file] [log] [blame]
// 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_PASSWORD_MANAGER_DELEGATE_IMPL_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_DELEGATE_IMPL_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome/browser/password_manager/password_manager_delegate.h"
class TabContentsWrapper;
class PasswordManagerDelegateImpl : public PasswordManagerDelegate {
public:
explicit PasswordManagerDelegateImpl(TabContentsWrapper* contents)
: tab_contents_(contents) { }
// PasswordManagerDelegate implementation.
virtual void FillPasswordForm(
const webkit::forms::PasswordFormFillData& form_data) OVERRIDE;
virtual void AddSavePasswordInfoBarIfPermitted(
PasswordFormManager* form_to_save) OVERRIDE;
virtual Profile* GetProfileForPasswordManager() OVERRIDE;
virtual bool DidLastPageLoadEncounterSSLErrors() OVERRIDE;
private:
TabContentsWrapper* tab_contents_;
DISALLOW_COPY_AND_ASSIGN(PasswordManagerDelegateImpl);
};
#endif // CHROME_BROWSER_PASSWORD_MANAGER_DELEGATE_IMPL_H_