| 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/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/guid.h" | 10 #include "base/guid.h" |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 bool ContentBrowserClient::CanCommitURL(RenderProcessHost* process_host, | 85 bool ContentBrowserClient::CanCommitURL(RenderProcessHost* process_host, |
| 86 const GURL& site_url) { | 86 const GURL& site_url) { |
| 87 return true; | 87 return true; |
| 88 } | 88 } |
| 89 | 89 |
| 90 bool ContentBrowserClient::ShouldAllowOpenURL(SiteInstance* site_instance, | 90 bool ContentBrowserClient::ShouldAllowOpenURL(SiteInstance* site_instance, |
| 91 const GURL& url) { | 91 const GURL& url) { |
| 92 return true; | 92 return true; |
| 93 } | 93 } |
| 94 | 94 |
| 95 bool ContentBrowserClient::ShouldIsolateFrameForTopDocumentIsolation( | 95 bool ContentBrowserClient:: |
| 96 NavigationHandle* navigation_handle, | 96 ShouldFrameShareParentSiteInstanceDespiteTopDocumentIsolation( |
| 97 SiteInstance* main_frame_site_instance) { | 97 const GURL& url, |
| 98 // In absence of customizations above //content layer, TDI mode should isolate | 98 SiteInstance* parent_site_instance) { |
| 99 // all cross-site frames. Additionally, isolating all cross-site frames makes | 99 return false; |
| 100 // it easier to test TopDocumentIsolation in content_browsertests. | |
| 101 return true; | |
| 102 } | 100 } |
| 103 | 101 |
| 104 bool ContentBrowserClient::IsSuitableHost(RenderProcessHost* process_host, | 102 bool ContentBrowserClient::IsSuitableHost(RenderProcessHost* process_host, |
| 105 const GURL& site_url) { | 103 const GURL& site_url) { |
| 106 return true; | 104 return true; |
| 107 } | 105 } |
| 108 | 106 |
| 109 bool ContentBrowserClient::MayReuseHost(RenderProcessHost* process_host) { | 107 bool ContentBrowserClient::MayReuseHost(RenderProcessHost* process_host) { |
| 110 return true; | 108 return true; |
| 111 } | 109 } |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 return nullptr; | 477 return nullptr; |
| 480 } | 478 } |
| 481 | 479 |
| 482 std::vector<std::unique_ptr<URLLoaderThrottle>> | 480 std::vector<std::unique_ptr<URLLoaderThrottle>> |
| 483 ContentBrowserClient::CreateURLLoaderThrottles( | 481 ContentBrowserClient::CreateURLLoaderThrottles( |
| 484 const base::Callback<WebContents*()>& wc_getter) { | 482 const base::Callback<WebContents*()>& wc_getter) { |
| 485 return std::vector<std::unique_ptr<URLLoaderThrottle>>(); | 483 return std::vector<std::unique_ptr<URLLoaderThrottle>>(); |
| 486 } | 484 } |
| 487 | 485 |
| 488 } // namespace content | 486 } // namespace content |
| OLD | NEW |