diff options
author | Ben Murdoch <benm@google.com> | 2010-08-06 12:08:59 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-09-13 15:04:09 +0100 |
commit | 7d214dfa174224b459660971e5b5cce2e06be02a (patch) | |
tree | 8bf36887488cddf26cb43e0394ba35972b5cfefa /chrome/common | |
parent | f74420b3285b9fe04a7e00aa3b8c0ab07ea344bc (diff) | |
download | external_chromium-7d214dfa174224b459660971e5b5cce2e06be02a.zip external_chromium-7d214dfa174224b459660971e5b5cce2e06be02a.tar.gz external_chromium-7d214dfa174224b459660971e5b5cce2e06be02a.tar.bz2 |
Intial set of changes to enable autofill on Android.
This is the initial checkin of AutoFill code into external/chromium.
There's still lots to do, but this basically gets autofill working
end to end, using a precanned profile injected from WebCore. By
default, autofill is not enabled at the moment. For testing you can
turn it on by setting the ENABLE_AUTOFILL environment variable to
"true" and rebuilding.
There is a corresponding change in external/webkit.
Change-Id: I74ef1ccc3fd0625f1bb8e2f85b43a60d23c59ffc
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/net/url_fetcher.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/common/net/url_fetcher.h b/chrome/common/net/url_fetcher.h index 9572478..3b0bafd 100644 --- a/chrome/common/net/url_fetcher.h +++ b/chrome/common/net/url_fetcher.h @@ -73,6 +73,10 @@ class URLFetcher { int response_code, const ResponseCookies& cookies, const std::string& data) = 0; +#ifdef ANDROID + // TODO: Upstream. + virtual ~Delegate() { } +#endif }; // URLFetcher::Create uses the currently registered Factory to create the @@ -83,6 +87,10 @@ class URLFetcher { const GURL& url, RequestType request_type, Delegate* d) = 0; +#ifdef ANDROID + // TODO: Upstream + virtual ~Factory() { } +#endif }; // |url| is the URL to send the request to. |