// 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 "chrome/browser/net/view_blob_internals_job_factory.h" #include "base/memory/scoped_ptr.h" #include "base/string_util.h" #include "chrome/browser/net/chrome_url_request_context.h" #include "chrome/common/url_constants.h" #include "net/url_request/url_request.h" #include "webkit/blob/view_blob_internals_job.h" // static. bool ViewBlobInternalsJobFactory::IsSupportedURL(const GURL& url) { return url.SchemeIs(chrome::kChromeUIScheme) && url.host() == chrome::kChromeUIBlobInternalsHost; } // static. net::URLRequestJob* ViewBlobInternalsJobFactory::CreateJobForRequest( net::URLRequest* request, webkit_blob::BlobStorageController* blob_storage_controller) { return new webkit_blob::ViewBlobInternalsJob( request, blob_storage_controller); }