Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Unified Diff: webkit/blob/blob_url_request_job_factory.h

Issue 15746017: Move webkit/blob to new locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/blob/blob_url_request_job.cc ('k') | webkit/blob/blob_url_request_job_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/blob/blob_url_request_job_factory.h
===================================================================
--- webkit/blob/blob_url_request_job_factory.h (revision 202679)
+++ webkit/blob/blob_url_request_job_factory.h (working copy)
@@ -1,58 +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_BLOB_BLOB_URL_REQUEST_JOB_FACTORY_H_
-#define WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_FACTORY_H_
-
-#include "base/compiler_specific.h"
-#include "base/memory/ref_counted.h"
-#include "net/url_request/url_request_job_factory.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace base {
-class MessageLoopProxy;
-} // namespace base
-
-namespace fileapi {
-class FileSystemContext;
-} // namespace fileapi
-
-namespace net {
-class URLRequest;
-} // namespace net
-
-namespace webkit_blob {
-
-class BlobData;
-class BlobStorageController;
-
-class WEBKIT_STORAGE_EXPORT BlobProtocolHandler
- : public net::URLRequestJobFactory::ProtocolHandler {
- public:
- // |controller|'s lifetime should exceed the lifetime of the ProtocolHandler.
- BlobProtocolHandler(BlobStorageController* blob_storage_controller,
- fileapi::FileSystemContext* file_system_context,
- base::MessageLoopProxy* file_loop_proxy);
- virtual ~BlobProtocolHandler();
-
- virtual net::URLRequestJob* MaybeCreateJob(
- net::URLRequest* request,
- net::NetworkDelegate* network_delegate) const OVERRIDE;
-
- private:
- virtual scoped_refptr<BlobData> LookupBlobData(
- net::URLRequest* request) const;
-
- // No scoped_refptr because |blob_storage_controller_| is owned by the
- // ProfileIOData, which also owns this ProtocolHandler.
- BlobStorageController* const blob_storage_controller_;
- const scoped_refptr<fileapi::FileSystemContext> file_system_context_;
- const scoped_refptr<base::MessageLoopProxy> file_loop_proxy_;
-
- DISALLOW_COPY_AND_ASSIGN(BlobProtocolHandler);
-};
-
-} // namespace webkit_blob
-
-#endif // WEBKIT_BLOB_BLOB_URL_REQUEST_JOB_FACTORY_H_
« no previous file with comments | « webkit/blob/blob_url_request_job.cc ('k') | webkit/blob/blob_url_request_job_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698