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

Side by Side Diff: storage/browser/fileapi/file_system_url_request_job_factory.cc

Issue 1139323003: Discard duplicate includes of files from storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "storage/browser/fileapi/file_system_url_request_job_factory.h" 5 #include "storage/browser/fileapi/file_system_url_request_job_factory.h"
6 6
7 #include <string>
8 7
piman 2015/05/19 17:50:37 nit: remove extra blank line.
Pranay 2015/05/20 02:56:12 Done.
9 #include "base/basictypes.h" 8 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
11 #include "net/url_request/url_request.h" 10 #include "net/url_request/url_request.h"
12 #include "storage/browser/fileapi/file_system_dir_url_request_job.h" 11 #include "storage/browser/fileapi/file_system_dir_url_request_job.h"
13 #include "storage/browser/fileapi/file_system_url_request_job.h" 12 #include "storage/browser/fileapi/file_system_url_request_job.h"
14 13
15 namespace storage { 14 namespace storage {
16 15
17 namespace { 16 namespace {
18 17
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 63
65 } // anonymous namespace 64 } // anonymous namespace
66 65
67 net::URLRequestJobFactory::ProtocolHandler* CreateFileSystemProtocolHandler( 66 net::URLRequestJobFactory::ProtocolHandler* CreateFileSystemProtocolHandler(
68 const std::string& storage_domain, FileSystemContext* context) { 67 const std::string& storage_domain, FileSystemContext* context) {
69 DCHECK(context); 68 DCHECK(context);
70 return new FileSystemProtocolHandler(storage_domain, context); 69 return new FileSystemProtocolHandler(storage_domain, context);
71 } 70 }
72 71
73 } // namespace storage 72 } // namespace storage
OLDNEW
« no previous file with comments | « storage/browser/fileapi/file_system_url.cc ('k') | storage/browser/fileapi/file_system_usage_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698