summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-12 09:59:20 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-12 09:59:20 +0000
commit300bb2a5b1f4b80a211cf1017b0cc7f900880421 (patch)
tree00714062df0e1be73fee437a27fa91b932dea219 /webkit
parent03ea3c52ca254436886a0372eb9fb4b1eb8aefd9 (diff)
downloadchromium_src-300bb2a5b1f4b80a211cf1017b0cc7f900880421.zip
chromium_src-300bb2a5b1f4b80a211cf1017b0cc7f900880421.tar.gz
chromium_src-300bb2a5b1f4b80a211cf1017b0cc7f900880421.tar.bz2
net: Add namespace net to URLRequestFileJob.
BUG=64263 TEST=trybots Review URL: http://codereview.chromium.org/5755004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/test_shell/test_shell.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc
index 81c6886..aaa6d37 100644
--- a/webkit/tools/test_shell/test_shell.cc
+++ b/webkit/tools/test_shell/test_shell.cc
@@ -84,7 +84,7 @@ const int kSVGTestWindowWidth = 480;
const int kSVGTestWindowHeight = 360;
// URLRequestTestShellFileJob is used to serve the inspector
-class URLRequestTestShellFileJob : public URLRequestFileJob {
+class URLRequestTestShellFileJob : public net::URLRequestFileJob {
public:
static net::URLRequestJob* InspectorFactory(net::URLRequest* request,
const std::string& scheme) {
@@ -98,7 +98,7 @@ class URLRequestTestShellFileJob : public URLRequestFileJob {
private:
URLRequestTestShellFileJob(net::URLRequest* request, const FilePath& path)
- : URLRequestFileJob(request, path) {
+ : net::URLRequestFileJob(request, path) {
}
virtual ~URLRequestTestShellFileJob() { }