summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/browser/appcache/OWNERS1
-rw-r--r--content/browser/appcache/view_appcache_internals_job_factory.cc25
-rw-r--r--content/browser/appcache/view_appcache_internals_job_factory.h24
-rw-r--r--content/content_browser.gypi2
4 files changed, 1 insertions, 51 deletions
diff --git a/content/browser/appcache/OWNERS b/content/browser/appcache/OWNERS
new file mode 100644
index 0000000..3723f40
--- /dev/null
+++ b/content/browser/appcache/OWNERS
@@ -0,0 +1 @@
+michaeln@chromium.org
diff --git a/content/browser/appcache/view_appcache_internals_job_factory.cc b/content/browser/appcache/view_appcache_internals_job_factory.cc
deleted file mode 100644
index a797672..0000000
--- a/content/browser/appcache/view_appcache_internals_job_factory.cc
+++ /dev/null
@@ -1,25 +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.
-
-#include "content/browser/appcache/view_appcache_internals_job_factory.h"
-
-#include "base/string_util.h"
-#include "chrome/common/url_constants.h"
-#include "content/browser/appcache/chrome_appcache_service.h"
-#include "net/url_request/url_request.h"
-#include "webkit/appcache/view_appcache_internals_job.h"
-
-// static.
-bool ViewAppCacheInternalsJobFactory::IsSupportedURL(const GURL& url) {
- return StartsWithASCII(url.spec(),
- chrome::kAppCacheViewInternalsURL,
- true /*case_sensitive*/);
-}
-
-// static.
-net::URLRequestJob* ViewAppCacheInternalsJobFactory::CreateJobForRequest(
- net::URLRequest* request, ChromeAppCacheService* appcache_service) {
- return new appcache::ViewAppCacheInternalsJob(
- request, appcache_service);
-}
diff --git a/content/browser/appcache/view_appcache_internals_job_factory.h b/content/browser/appcache/view_appcache_internals_job_factory.h
deleted file mode 100644
index 4b093c8..0000000
--- a/content/browser/appcache/view_appcache_internals_job_factory.h
+++ /dev/null
@@ -1,24 +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 CONTENT_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_FACTORY_H_
-#define CONTENT_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_FACTORY_H_
-#pragma once
-
-class ChromeAppCacheService;
-class GURL;
-namespace net {
-class URLRequest;
-class URLRequestJob;
-} // namespace net
-
-class ViewAppCacheInternalsJobFactory {
- public:
- static bool IsSupportedURL(const GURL& url);
- static net::URLRequestJob* CreateJobForRequest(
- net::URLRequest* request,
- ChromeAppCacheService* appcache_service);
-};
-
-#endif // CONTENT_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_FACTORY_H_
diff --git a/content/content_browser.gypi b/content/content_browser.gypi
index 613b4a7..79c0c63 100644
--- a/content/content_browser.gypi
+++ b/content/content_browser.gypi
@@ -28,8 +28,6 @@
'browser/appcache/appcache_frontend_proxy.h',
'browser/appcache/chrome_appcache_service.cc',
'browser/appcache/chrome_appcache_service.h',
- 'browser/appcache/view_appcache_internals_job_factory.cc',
- 'browser/appcache/view_appcache_internals_job_factory.h',
'browser/browser_child_process_host.cc',
'browser/browser_child_process_host.h',
'browser/browser_message_filter.cc',