summaryrefslogtreecommitdiffstats
path: root/android_webview/native/android_protocol_handler.h
diff options
context:
space:
mode:
authortedv@chromium.org <tedv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-16 20:32:29 +0000
committertedv@chromium.org <tedv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-16 20:32:29 +0000
commit62f18e79afcf0a1013f3754f5a603a86f79a5ccf (patch)
treeb22a5d624de4f458a0592d2e5eb72ca28078e747 /android_webview/native/android_protocol_handler.h
parent009dc0702a605ca63363a7b6fe28dd490cf31f3c (diff)
downloadchromium_src-62f18e79afcf0a1013f3754f5a603a86f79a5ccf.zip
chromium_src-62f18e79afcf0a1013f3754f5a603a86f79a5ccf.tar.gz
chromium_src-62f18e79afcf0a1013f3754f5a603a86f79a5ccf.tar.bz2
Change Android Webview URL Request Context access of mutation functions.
The associated CR involves moving mutation interfaces of URLRequestJobFactory to derived (non-abstract) classes. See CL https://codereview.chromium.org/11227017 for more information. BUG=146602 Review URL: https://chromiumcodereview.appspot.com/11447032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/native/android_protocol_handler.h')
-rw-r--r--android_webview/native/android_protocol_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/android_webview/native/android_protocol_handler.h b/android_webview/native/android_protocol_handler.h
index 5910d86..0fde454 100644
--- a/android_webview/native/android_protocol_handler.h
+++ b/android_webview/native/android_protocol_handler.h
@@ -9,10 +9,10 @@
namespace net {
class URLRequestContext;
-class URLRequestJobFactory;
} // namespace net
namespace android_webview {
+class AwURLRequestJobFactory;
// This class adds support for Android WebView-specific protocol schemes:
//
@@ -26,7 +26,7 @@ namespace android_webview {
// WebSettings.html#setAllowFileAccess(boolean)
void RegisterAndroidProtocolsOnIOThread(
net::URLRequestContext* context,
- net::URLRequestJobFactory* job_factory);
+ AwURLRequestJobFactory* job_factory);
bool RegisterAndroidProtocolHandler(JNIEnv* env);
} // namespace android_webview