Chromium Code Reviews| Index: chrome/browser/autofill/autofill_download.h |
| diff --git a/chrome/browser/autofill/autofill_download.h b/chrome/browser/autofill/autofill_download.h |
| index cb02e008fcced886e30469f91995ae47a6edaf8e..966fd9a4173b31a7495e32168d1af46361a5c0f6 100644 |
| --- a/chrome/browser/autofill/autofill_download.h |
| +++ b/chrome/browser/autofill/autofill_download.h |
| @@ -15,6 +15,7 @@ |
| #include "base/compiler_specific.h" |
| #include "base/gtest_prod_util.h" |
| #include "base/time.h" |
| +#include "chrome/browser/autofill/autofill_download_url.h" |
|
Albert Bodenhamer
2012/10/23 23:57:11
Forward declare rather than include.
ahutter
2012/10/24 17:33:45
Done.
|
| #include "chrome/browser/autofill/autofill_type.h" |
| #include "net/url_request/url_fetcher_delegate.h" |
| @@ -137,6 +138,8 @@ class AutofillDownloadManager : public net::URLFetcherDelegate { |
| // Must not be null. |
| AutofillDownloadManager::Observer* const observer_; // WEAK |
| + AutofillDownloadUrl* autofill_download_url_; |
|
Ilya Sherman
2012/10/23 23:45:13
Why is this stored as a pointer?
Albert Bodenhamer
2012/10/23 23:57:11
scoped_ptr<>
ahutter
2012/10/24 17:33:45
Done.
|
| + |
| // For each requested form for both query and upload we create a separate |
| // request and save its info. As url fetcher is identified by its address |
| // we use a map between fetchers and info. |