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

Unified Diff: components/autofill/renderer/password_generation_manager.h

Issue 13928035: WIP Component build of autofill Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make windows compiling Created 7 years, 8 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: components/autofill/renderer/password_generation_manager.h
diff --git a/components/autofill/renderer/password_generation_manager.h b/components/autofill/renderer/password_generation_manager.h
index 46510d1da1816d5ba52a5319425acd9ca39f1bf9..f46d328fccbde177f7b835569f748279eedc562b 100644
--- a/components/autofill/renderer/password_generation_manager.h
+++ b/components/autofill/renderer/password_generation_manager.h
@@ -9,6 +9,7 @@
#include <utility>
#include <vector>
+#include "components/autofill/common/autofill_export.h"
#include "content/public/renderer/render_view_observer.h"
#include "googleurl/src/gurl.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h"
@@ -28,8 +29,9 @@ namespace autofill {
// This class is responsible for controlling communication for password
// generation between the browser (which shows the popup and generates
// passwords) and WebKit (shows the generation icon in the password field).
-class PasswordGenerationManager : public content::RenderViewObserver,
- public WebKit::WebTextFieldDecoratorClient {
+class AUTOFILL_EXPORT PasswordGenerationManager
+ : public content::RenderViewObserver,
+ NON_EXPORTED_BASE(public WebKit::WebTextFieldDecoratorClient) {
public:
explicit PasswordGenerationManager(content::RenderView* render_view);
virtual ~PasswordGenerationManager();

Powered by Google App Engine
This is Rietveld 408576698