summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/test_shell.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/test_shell.cc')
-rw-r--r--webkit/tools/test_shell/test_shell.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc
index 9c78b5f..1888202 100644
--- a/webkit/tools/test_shell/test_shell.cc
+++ b/webkit/tools/test_shell/test_shell.cc
@@ -76,8 +76,6 @@ const int kSVGTestWindowHeight = 360;
// URLRequestTestShellFileJob is used to serve the inspector
class URLRequestTestShellFileJob : public URLRequestFileJob {
public:
- virtual ~URLRequestTestShellFileJob() { }
-
static URLRequestJob* InspectorFactory(URLRequest* request,
const std::string& scheme) {
FilePath path;
@@ -92,6 +90,7 @@ class URLRequestTestShellFileJob : public URLRequestFileJob {
URLRequestTestShellFileJob(URLRequest* request, const FilePath& path)
: URLRequestFileJob(request, path) {
}
+ virtual ~URLRequestTestShellFileJob() { }
DISALLOW_COPY_AND_ASSIGN(URLRequestTestShellFileJob);
};