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

Unified Diff: chrome/browser/password_manager_delegate_impl.h

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/password_manager_delegate_impl.h
===================================================================
--- chrome/browser/password_manager_delegate_impl.h (revision 0)
+++ chrome/browser/password_manager_delegate_impl.h (revision 0)
@@ -0,0 +1,29 @@
+// Copyright (c) 2010 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 "chrome/browser/password_manager/password_manager_delegate.h"
+
+class TabContents;
+
+class PasswordManagerDelegateImpl : public PasswordManagerDelegate {
+ public:
+ explicit PasswordManagerDelegateImpl(TabContents* contents)
+ : tab_contents_(contents) { }
+
+ // PasswordManagerDelegate implementation.
+ virtual void FillPasswordForm(
+ const webkit_glue::PasswordFormFillData& form_data);
+ virtual void AddSavePasswordInfoBar(PasswordFormManager* form_to_save);
+ virtual Profile* GetProfileForPasswordManager();
+ virtual bool DidLastPageLoadEncounterSSLErrors();
+ private:
+ TabContents* tab_contents_;
+ DISALLOW_COPY_AND_ASSIGN(PasswordManagerDelegateImpl);
+};
+
+#endif // CHROME_BROWSER_PASSWORD_MANAGER_DELEGATE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698