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

Unified Diff: chrome/browser/plugin_infobar_delegates.cc

Issue 10837363: Introduce AutofillClient and use it to get rid of PasswordManager dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months 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/plugin_infobar_delegates.cc
diff --git a/chrome/browser/plugin_infobar_delegates.cc b/chrome/browser/plugin_infobar_delegates.cc
index e3592465c2f65249154a3d419cc69db62199cbbe..2881c81cd7f6807febebddcc971c08ec5447aa6e 100644
--- a/chrome/browser/plugin_infobar_delegates.cc
+++ b/chrome/browser/plugin_infobar_delegates.cc
@@ -175,11 +175,9 @@ OutdatedPluginInfoBarDelegate::OutdatedPluginInfoBarDelegate(
PluginObserver* observer,
PluginInstaller* installer,
const string16& message)
- : PluginInfoBarDelegate(
-
-InfoBarTabService::ForTab(observer->tab_contents()),
- installer->name(),
- installer->identifier()),
+ : PluginInfoBarDelegate(InfoBarTabService::ForTab(observer->tab_contents()),
Jói 2012/08/21 16:30:46 This was just a formatting fix I stumbled on as I
+ installer->name(),
+ installer->identifier()),
WeakPluginInstallerObserver(installer),
observer_(observer),
message_(message) {

Powered by Google App Engine
This is Rietveld 408576698