OLD | NEW |
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 "content/browser/webui/url_data_manager_backend.h" | 5 #include "content/browser/webui/url_data_manager_backend.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/debug/trace_event.h" | 13 #include "base/debug/trace_event.h" |
14 #include "base/file_util.h" | |
15 #include "base/lazy_instance.h" | 14 #include "base/lazy_instance.h" |
16 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
17 #include "base/memory/ref_counted_memory.h" | 16 #include "base/memory/ref_counted_memory.h" |
18 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
19 #include "base/message_loop.h" | 18 #include "base/message_loop.h" |
20 #include "base/string_util.h" | 19 #include "base/string_util.h" |
21 #include "content/browser/fileapi/chrome_blob_storage_context.h" | 20 #include "content/browser/fileapi/chrome_blob_storage_context.h" |
22 #include "content/browser/histogram_internals_request_job.h" | 21 #include "content/browser/histogram_internals_request_job.h" |
23 #include "content/browser/net/view_blob_internals_job_factory.h" | 22 #include "content/browser/net/view_blob_internals_job_factory.h" |
24 #include "content/browser/net/view_http_cache_job_factory.h" | 23 #include "content/browser/net/view_http_cache_job_factory.h" |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 | 645 |
647 } // namespace | 646 } // namespace |
648 | 647 |
649 net::URLRequestJobFactory::ProtocolHandler* | 648 net::URLRequestJobFactory::ProtocolHandler* |
650 CreateDevToolsProtocolHandler(content::ResourceContext* resource_context, | 649 CreateDevToolsProtocolHandler(content::ResourceContext* resource_context, |
651 bool is_incognito) { | 650 bool is_incognito) { |
652 return new DevToolsJobFactory(resource_context, is_incognito); | 651 return new DevToolsJobFactory(resource_context, is_incognito); |
653 } | 652 } |
654 | 653 |
655 } // namespace content | 654 } // namespace content |
OLD | NEW |