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

Side by Side Diff: content/browser/webui/url_data_manager_backend.cc

Issue 18868005: content: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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) 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"
(...skipping 12 matching lines...) Expand all
23 #include "content/browser/net/view_http_cache_job_factory.h" 23 #include "content/browser/net/view_http_cache_job_factory.h"
24 #include "content/browser/resource_context_impl.h" 24 #include "content/browser/resource_context_impl.h"
25 #include "content/browser/tcmalloc_internals_request_job.h" 25 #include "content/browser/tcmalloc_internals_request_job.h"
26 #include "content/browser/webui/shared_resources_data_source.h" 26 #include "content/browser/webui/shared_resources_data_source.h"
27 #include "content/browser/webui/url_data_source_impl.h" 27 #include "content/browser/webui/url_data_source_impl.h"
28 #include "content/public/browser/browser_thread.h" 28 #include "content/public/browser/browser_thread.h"
29 #include "content/public/browser/content_browser_client.h" 29 #include "content/public/browser/content_browser_client.h"
30 #include "content/public/browser/render_process_host.h" 30 #include "content/public/browser/render_process_host.h"
31 #include "content/public/browser/resource_request_info.h" 31 #include "content/public/browser/resource_request_info.h"
32 #include "content/public/common/url_constants.h" 32 #include "content/public/common/url_constants.h"
33 #include "googleurl/src/url_util.h"
34 #include "net/base/io_buffer.h" 33 #include "net/base/io_buffer.h"
35 #include "net/base/net_errors.h" 34 #include "net/base/net_errors.h"
36 #include "net/http/http_response_headers.h" 35 #include "net/http/http_response_headers.h"
37 #include "net/http/http_status_code.h" 36 #include "net/http/http_status_code.h"
38 #include "net/url_request/url_request.h" 37 #include "net/url_request/url_request.h"
39 #include "net/url_request/url_request_context.h" 38 #include "net/url_request/url_request_context.h"
40 #include "net/url_request/url_request_job.h" 39 #include "net/url_request/url_request_job.h"
41 #include "net/url_request/url_request_job_factory.h" 40 #include "net/url_request/url_request_job_factory.h"
41 #include "url/url_util.h"
42 #include "webkit/browser/appcache/view_appcache_internals_job.h" 42 #include "webkit/browser/appcache/view_appcache_internals_job.h"
43 43
44 using appcache::AppCacheService; 44 using appcache::AppCacheService;
45 45
46 namespace content { 46 namespace content {
47 47
48 namespace { 48 namespace {
49 49
50 // TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed. 50 // TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
51 const char kChromeURLContentSecurityPolicyHeaderBase[] = 51 const char kChromeURLContentSecurityPolicyHeaderBase[] =
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 646
647 } // namespace 647 } // namespace
648 648
649 net::URLRequestJobFactory::ProtocolHandler* 649 net::URLRequestJobFactory::ProtocolHandler*
650 CreateDevToolsProtocolHandler(content::ResourceContext* resource_context, 650 CreateDevToolsProtocolHandler(content::ResourceContext* resource_context,
651 bool is_incognito) { 651 bool is_incognito) {
652 return new DevToolsJobFactory(resource_context, is_incognito); 652 return new DevToolsJobFactory(resource_context, is_incognito);
653 } 653 }
654 654
655 } // namespace content 655 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698