summaryrefslogtreecommitdiffstats
path: root/chromium/webkit/browser/appcache/view_appcache_internals_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/webkit/browser/appcache/view_appcache_internals_job.h')
-rw-r--r--chromium/webkit/browser/appcache/view_appcache_internals_job.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/chromium/webkit/browser/appcache/view_appcache_internals_job.h b/chromium/webkit/browser/appcache/view_appcache_internals_job.h
deleted file mode 100644
index d247c3ea6a8..00000000000
--- a/chromium/webkit/browser/appcache/view_appcache_internals_job.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_
-#define WEBKIT_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_
-
-#include "base/basictypes.h"
-#include "webkit/browser/webkit_storage_browser_export.h"
-
-namespace net {
-class NetworkDelegate;
-class URLRequest;
-class URLRequestJob;
-}
-
-namespace appcache {
-
-class AppCacheService;
-
-class WEBKIT_STORAGE_BROWSER_EXPORT ViewAppCacheInternalsJobFactory {
- public:
- static net::URLRequestJob* CreateJobForRequest(
- net::URLRequest* request,
- net::NetworkDelegate* network_delegate,
- AppCacheService* service);
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(ViewAppCacheInternalsJobFactory);
-};
-
-} // namespace appcache
-
-#endif // WEBKIT_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_