| Index: components/autofill/common/password_generation_util.h
|
| diff --git a/components/autofill/common/password_generation_util.h b/components/autofill/common/password_generation_util.h
|
| index a855958d5325811f4d1bc7f4d82b025b3998624b..06e13850f034b3848e5eed732d7c7680ab0b9ab0 100644
|
| --- a/components/autofill/common/password_generation_util.h
|
| +++ b/components/autofill/common/password_generation_util.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_AUTOFILL_COMMON_PASSWORD_GENERATION_UTIL_H_
|
| #define COMPONENTS_AUTOFILL_COMMON_PASSWORD_GENERATION_UTIL_H_
|
|
|
| +#include "components/autofill/common/autofill_export.h"
|
| +
|
| namespace autofill {
|
| namespace password_generation {
|
|
|
| @@ -27,7 +29,7 @@ enum PasswordGenerationEvent {
|
| };
|
|
|
| // Wrapper to store the user interactions with the password generation bubble.
|
| -struct PasswordGenerationActions {
|
| +struct AUTOFILL_EXPORT PasswordGenerationActions {
|
| // Whether the user has clicked on the learn more link.
|
| bool learn_more_visited;
|
|
|
| @@ -44,7 +46,7 @@ struct PasswordGenerationActions {
|
| ~PasswordGenerationActions();
|
| };
|
|
|
| -void LogUserActions(PasswordGenerationActions actions);
|
| +void AUTOFILL_EXPORT LogUserActions(PasswordGenerationActions actions);
|
|
|
| void LogPasswordGenerationEvent(PasswordGenerationEvent event);
|
|
|
|
|