| OLD | NEW |
| 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 "chrome/browser/ui/webui/chrome_url_data_manager_backend.h" | 5 #include "chrome/browser/ui/webui/chrome_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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 insert(chrome::kChromeUIHttpAuthHost); | 79 insert(chrome::kChromeUIHttpAuthHost); |
| 80 insert(chrome::kChromeUIRepostFormWarningHost); | 80 insert(chrome::kChromeUIRepostFormWarningHost); |
| 81 #endif | 81 #endif |
| 82 #if defined(USE_AURA) | 82 #if defined(USE_AURA) |
| 83 insert(chrome::kChromeUIAppListHost); | 83 insert(chrome::kChromeUIAppListHost); |
| 84 #endif | 84 #endif |
| 85 } | 85 } |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 base::LazyInstance<ChromeURLContentSecurityPolicyExceptionSet> | 88 base::LazyInstance<ChromeURLContentSecurityPolicyExceptionSet> |
| 89 g_chrome_url_content_security_policy_exceptions(base::LINKER_INITIALIZED); | 89 g_chrome_url_content_security_policy_exceptions = LAZY_INSTANCE_INITIALIZER; |
| 90 | 90 |
| 91 // Parse a URL into the components used to resolve its request. |source_name| | 91 // Parse a URL into the components used to resolve its request. |source_name| |
| 92 // is the hostname and |path| is the remaining portion of the URL. | 92 // is the hostname and |path| is the remaining portion of the URL. |
| 93 void URLToRequest(const GURL& url, std::string* source_name, | 93 void URLToRequest(const GURL& url, std::string* source_name, |
| 94 std::string* path) { | 94 std::string* path) { |
| 95 DCHECK(url.SchemeIs(chrome::kChromeDevToolsScheme) || | 95 DCHECK(url.SchemeIs(chrome::kChromeDevToolsScheme) || |
| 96 url.SchemeIs(chrome::kChromeUIScheme)); | 96 url.SchemeIs(chrome::kChromeUIScheme)); |
| 97 | 97 |
| 98 if (!url.is_valid()) { | 98 if (!url.is_valid()) { |
| 99 NOTREACHED(); | 99 NOTREACHED(); |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 | 548 |
| 549 return new URLRequestChromeJob(request, backend_); | 549 return new URLRequestChromeJob(request, backend_); |
| 550 } | 550 } |
| 551 | 551 |
| 552 } // namespace | 552 } // namespace |
| 553 | 553 |
| 554 net::URLRequestJobFactory::ProtocolHandler* | 554 net::URLRequestJobFactory::ProtocolHandler* |
| 555 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend) { | 555 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend) { |
| 556 return new DevToolsJobFactory(backend); | 556 return new DevToolsJobFactory(backend); |
| 557 } | 557 } |
| OLD | NEW |