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

Side by Side Diff: webkit/browser/blob/blob_url_request_job_factory.cc

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/browser/blob/blob_url_request_job_factory.h" 5 #include "webkit/browser/blob/blob_url_request_job_factory.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "net/url_request/url_request.h" 10 #include "net/url_request/url_request.h"
11 #include "net/url_request/url_request_job_factory.h" 11 #include "net/url_request/url_request_job_factory.h"
12 #include "webkit/browser/blob/blob_storage_controller.h" 12 #include "webkit/browser/blob/blob_storage_controller.h"
13 #include "webkit/browser/blob/blob_url_request_job.h" 13 #include "webkit/browser/blob/blob_url_request_job.h"
14 #include "webkit/browser/fileapi/file_system_context.h" 14 #include "webkit/browser/fileapi/file_system_context.h"
15 15
16 namespace webkit_blob { 16 namespace webkit_blob {
17 17
18 BlobProtocolHandler::BlobProtocolHandler( 18 BlobProtocolHandler::BlobProtocolHandler(
19 webkit_blob::BlobStorageController* blob_storage_controller, 19 webkit_blob::BlobStorageController* blob_storage_controller,
(...skipping 22 matching lines...) Expand all
42 file_system_context_.get(), 42 file_system_context_.get(),
43 file_loop_proxy_.get()); 43 file_loop_proxy_.get());
44 } 44 }
45 45
46 scoped_refptr<webkit_blob::BlobData> 46 scoped_refptr<webkit_blob::BlobData>
47 BlobProtocolHandler::LookupBlobData(net::URLRequest* request) const { 47 BlobProtocolHandler::LookupBlobData(net::URLRequest* request) const {
48 return NULL; 48 return NULL;
49 } 49 }
50 50
51 } // namespace webkit_blob 51 } // namespace webkit_blob
OLDNEW
« no previous file with comments | « webkit/browser/blob/blob_url_request_job.cc ('k') | webkit/browser/database/database_quota_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698