| 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 ab956532ece7d42e2dac265a35e55a7a3675dc12..e5d4461c5af39570d0db07120dd8c44e96411cee 100644
|
| --- a/webkit/tools/test_shell/test_shell.cc
|
| +++ b/webkit/tools/test_shell/test_shell.cc
|
| @@ -86,7 +86,7 @@ const int kSVGTestWindowHeight = 360;
|
| // URLRequestTestShellFileJob is used to serve the inspector
|
| class URLRequestTestShellFileJob : public URLRequestFileJob {
|
| public:
|
| - static URLRequestJob* InspectorFactory(URLRequest* request,
|
| + static URLRequestJob* InspectorFactory(net::URLRequest* request,
|
| const std::string& scheme) {
|
| FilePath path;
|
| PathService::Get(base::DIR_EXE, &path);
|
| @@ -97,7 +97,7 @@ class URLRequestTestShellFileJob : public URLRequestFileJob {
|
| }
|
|
|
| private:
|
| - URLRequestTestShellFileJob(URLRequest* request, const FilePath& path)
|
| + URLRequestTestShellFileJob(net::URLRequest* request, const FilePath& path)
|
| : URLRequestFileJob(request, path) {
|
| }
|
| virtual ~URLRequestTestShellFileJob() { }
|
|
|