| Index: chrome/browser/password_manager_delegate_impl.h
|
| diff --git a/chrome/browser/password_manager_delegate_impl.h b/chrome/browser/password_manager_delegate_impl.h
|
| index 82e58f3fedd0cbb73e02baf2bc7fe77a76c0a029..5552568fa2cb3af4d40929e6150174487f14e49b 100644
|
| --- a/chrome/browser/password_manager_delegate_impl.h
|
| +++ b/chrome/browser/password_manager_delegate_impl.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 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.
|
|
|
| @@ -6,6 +6,7 @@
|
| #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;
|
| @@ -17,10 +18,11 @@ class PasswordManagerDelegateImpl : public PasswordManagerDelegate {
|
|
|
| // PasswordManagerDelegate implementation.
|
| virtual void FillPasswordForm(
|
| - const webkit_glue::PasswordFormFillData& form_data);
|
| - virtual void AddSavePasswordInfoBar(PasswordFormManager* form_to_save);
|
| - virtual Profile* GetProfileForPasswordManager();
|
| - virtual bool DidLastPageLoadEncounterSSLErrors();
|
| + const webkit_glue::PasswordFormFillData& form_data) OVERRIDE;
|
| + virtual void AddSavePasswordInfoBar(
|
| + PasswordFormManager* form_to_save) OVERRIDE;
|
| + virtual Profile* GetProfileForPasswordManager() OVERRIDE;
|
| + virtual bool DidLastPageLoadEncounterSSLErrors() OVERRIDE;
|
| private:
|
| TabContentsWrapper* tab_contents_;
|
| DISALLOW_COPY_AND_ASSIGN(PasswordManagerDelegateImpl);
|
|
|