| Index: chrome/browser/autofill/autofill_manager.h
|
| diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h
|
| index 058ee25d75b258f69124e23e11cb0a85e4f08513..f372819c80fa7aa2881564d4eda71610af4e8cdf 100644
|
| --- a/chrome/browser/autofill/autofill_manager.h
|
| +++ b/chrome/browser/autofill/autofill_manager.h
|
| @@ -31,14 +31,17 @@ class AutofillMetrics;
|
| class CreditCard;
|
| class PersonalDataManager;
|
| class PrefService;
|
| -class RenderViewHost;
|
| class TabContentsWrapper;
|
|
|
| struct ViewHostMsg_FrameNavigate_Params;
|
|
|
| +namespace content {
|
| +class RenderViewHost;
|
| +}
|
| +
|
| namespace gfx {
|
| class Rect;
|
| -};
|
| +}
|
|
|
| namespace IPC {
|
| class Message;
|
| @@ -167,7 +170,7 @@ class AutofillManager : public content::WebContentsObserver,
|
| // Returns false if Autofill is disabled or if the host is unavailable.
|
| bool GetHost(const std::vector<AutofillProfile*>& profiles,
|
| const std::vector<CreditCard*>& credit_cards,
|
| - RenderViewHost** host) const WARN_UNUSED_RESULT;
|
| + content::RenderViewHost** host) const WARN_UNUSED_RESULT;
|
|
|
| // Unpacks |unique_id| and fills |profile| or |credit_card| with the
|
| // appropriate data source. Returns false if the unpacked id cannot be found.
|
|
|