summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_plugin_host.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-11 10:18:59 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-11 10:18:59 +0000
commit9acd869ec5621373757a6959310f39e1f5ec3f3d (patch)
tree43b9beab430d066670b7515579e20c755d9a0d4d /chrome/browser/chrome_plugin_host.cc
parent3f45597ed0041c49a627fd5e2be55ff6d5570022 (diff)
downloadchromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.zip
chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.tar.gz
chromium_src-9acd869ec5621373757a6959310f39e1f5ec3f3d.tar.bz2
net: Remove typedef net::URLRequestJob URLRequestJob;
BUG=64263 TEST=compiled locally, trybots Review URL: http://codereview.chromium.org/5607004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68935 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_plugin_host.cc')
-rw-r--r--chrome/browser/chrome_plugin_host.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chrome_plugin_host.cc b/chrome/browser/chrome_plugin_host.cc
index 3dfedc8..9248036 100644
--- a/chrome/browser/chrome_plugin_host.cc
+++ b/chrome/browser/chrome_plugin_host.cc
@@ -56,7 +56,7 @@ using base::TimeDelta;
class PluginRequestInterceptor
: public PluginHelper, public net::URLRequest::Interceptor {
public:
- static URLRequestJob* UninterceptedProtocolHandler(
+ static net::URLRequestJob* UninterceptedProtocolHandler(
net::URLRequest* request, const std::string& scheme) {
// This will get called if a plugin failed to intercept a request for a
// protocol it has registered. In that case, we return NULL and the request
@@ -97,7 +97,7 @@ class PluginRequestInterceptor
}
// net::URLRequest::Interceptor
- virtual URLRequestJob* MaybeIntercept(net::URLRequest* request) {
+ virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request) {
// TODO(darin): This DCHECK fails in the unit tests because our interceptor
// is being persisted across unit tests. As a result, each time we get
// poked on a different thread, but never from more than one thread at a