| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chromecast/shell/browser/cast_content_browser_client.h" | 5 #include "chromecast/shell/browser/cast_content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/i18n/rtl.h" |
| 8 #include "chromecast/shell/browser/cast_browser_context.h" | 9 #include "chromecast/shell/browser/cast_browser_context.h" |
| 9 #include "chromecast/shell/browser/cast_browser_main_parts.h" | 10 #include "chromecast/shell/browser/cast_browser_main_parts.h" |
| 10 #include "chromecast/shell/browser/cast_browser_process.h" | 11 #include "chromecast/shell/browser/cast_browser_process.h" |
| 11 #include "chromecast/shell/browser/geolocation/cast_access_token_store.h" | 12 #include "chromecast/shell/browser/geolocation/cast_access_token_store.h" |
| 12 #include "chromecast/shell/browser/url_request_context_factory.h" | 13 #include "chromecast/shell/browser/url_request_context_factory.h" |
| 13 #include "content/public/browser/certificate_request_result_type.h" | 14 #include "content/public/browser/certificate_request_result_type.h" |
| 14 #include "content/public/browser/render_process_host.h" | 15 #include "content/public/browser/render_process_host.h" |
| 15 #include "content/public/common/content_descriptors.h" | 16 #include "content/public/common/content_descriptors.h" |
| 16 #include "content/public/common/content_switches.h" | 17 #include "content/public/common/content_switches.h" |
| 17 #include "content/public/common/url_constants.h" | 18 #include "content/public/common/url_constants.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 } | 141 } |
| 141 | 142 |
| 142 void CastContentBrowserClient::GetAdditionalMappedFilesForChildProcess( | 143 void CastContentBrowserClient::GetAdditionalMappedFilesForChildProcess( |
| 143 const base::CommandLine& command_line, | 144 const base::CommandLine& command_line, |
| 144 int child_process_id, | 145 int child_process_id, |
| 145 std::vector<content::FileDescriptorInfo>* mappings) { | 146 std::vector<content::FileDescriptorInfo>* mappings) { |
| 146 } | 147 } |
| 147 | 148 |
| 148 } // namespace shell | 149 } // namespace shell |
| 149 } // namespace chromecast | 150 } // namespace chromecast |
| OLD | NEW |