Index: webkit/tools/test_shell/test_shell.cc |
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc |
index 81c688629ea35db419e323f518c3719b99fc5009..aaa6d37b3222b7215843e3bfea1db5518bf4b15b 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() { } |