| 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 "chrome/browser/custom_handlers/protocol_handler_registry.h" | 5 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include <utility> | 9 #include <utility> |
| 8 | 10 |
| 9 #include "base/bind.h" | 11 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 11 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/macros.h" |
| 12 #include "base/prefs/pref_service.h" | 15 #include "base/prefs/pref_service.h" |
| 16 #include "build/build_config.h" |
| 13 #include "chrome/browser/chrome_notification_types.h" | 17 #include "chrome/browser/chrome_notification_types.h" |
| 14 #include "chrome/browser/profiles/profile_io_data.h" | 18 #include "chrome/browser/profiles/profile_io_data.h" |
| 15 #include "chrome/common/custom_handlers/protocol_handler.h" | 19 #include "chrome/common/custom_handlers/protocol_handler.h" |
| 16 #include "chrome/common/pref_names.h" | 20 #include "chrome/common/pref_names.h" |
| 17 #include "chrome/grit/generated_resources.h" | 21 #include "chrome/grit/generated_resources.h" |
| 18 #include "components/pref_registry/pref_registry_syncable.h" | 22 #include "components/pref_registry/pref_registry_syncable.h" |
| 19 #include "components/user_prefs/user_prefs.h" | 23 #include "components/user_prefs/user_prefs.h" |
| 20 #include "content/public/browser/child_process_security_policy.h" | 24 #include "content/public/browser/child_process_security_policy.h" |
| 21 #include "net/base/network_delegate.h" | 25 #include "net/base/network_delegate.h" |
| 22 #include "net/url_request/url_request_redirect_job.h" | 26 #include "net/url_request/url_request_redirect_job.h" |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 | 966 |
| 963 scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> | 967 scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> |
| 964 ProtocolHandlerRegistry::CreateJobInterceptorFactory() { | 968 ProtocolHandlerRegistry::CreateJobInterceptorFactory() { |
| 965 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 969 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 966 // this is always created on the UI thread (in profile_io's | 970 // this is always created on the UI thread (in profile_io's |
| 967 // InitializeOnUIThread. Any method calls must be done | 971 // InitializeOnUIThread. Any method calls must be done |
| 968 // on the IO thread (this is checked). | 972 // on the IO thread (this is checked). |
| 969 return scoped_ptr<JobInterceptorFactory>( | 973 return scoped_ptr<JobInterceptorFactory>( |
| 970 new JobInterceptorFactory(io_thread_delegate_.get())); | 974 new JobInterceptorFactory(io_thread_delegate_.get())); |
| 971 } | 975 } |
| OLD | NEW |