summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebCoreFrameBridge.h
diff options
context:
space:
mode:
authorSelim Gurun <sgurun@google.com>2012-08-29 15:38:48 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-08-29 15:38:49 -0700
commit9976df9e944fed76ce8c5b22b6317a63117c4e40 (patch)
treee92b0b39efeba04a198539e740ce385d9912c78e /Source/WebKit/android/jni/WebCoreFrameBridge.h
parentf39a3cbeac21b1d076bee9cbc25bec1d981f6aab (diff)
parentfd1365ed14367fb8af3b0ba958f268b1e9491e6e (diff)
downloadexternal_webkit-9976df9e944fed76ce8c5b22b6317a63117c4e40.zip
external_webkit-9976df9e944fed76ce8c5b22b6317a63117c4e40.tar.gz
external_webkit-9976df9e944fed76ce8c5b22b6317a63117c4e40.tar.bz2
Merge "Provide referer when download requested" into jb-mr1-dev
Diffstat (limited to 'Source/WebKit/android/jni/WebCoreFrameBridge.h')
-rw-r--r--Source/WebKit/android/jni/WebCoreFrameBridge.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/jni/WebCoreFrameBridge.h b/Source/WebKit/android/jni/WebCoreFrameBridge.h
index 30c1d83..56b095b 100644
--- a/Source/WebKit/android/jni/WebCoreFrameBridge.h
+++ b/Source/WebKit/android/jni/WebCoreFrameBridge.h
@@ -116,7 +116,7 @@ class WebFrame : public WebCoreRefObject {
void didReceiveAuthenticationChallenge(WebUrlLoaderClient*, const std::string& host, const std::string& realm, bool useCachedCredentials, bool suppressDialog);
void reportSslCertError(WebUrlLoaderClient* client, int cert_error, const std::string& cert, const std::string& url);
void requestClientCert(WebUrlLoaderClient* client, const std::string& hostAndPort);
- void downloadStart(const std::string& url, const std::string& userAgent, const std::string& contentDisposition, const std::string& mimetype, long long contentLength);
+ void downloadStart(const std::string& url, const std::string& userAgent, const std::string& contentDisposition, const std::string& mimetype, const std::string& referer, long long contentLength);
void didReceiveData(const char* data, int size);
void didFinishLoading();
void setCertificate(const std::string& cert);