| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 const GURL& opener_top_level_frame_url, | 290 const GURL& opener_top_level_frame_url, |
| 291 const GURL& source_origin, | 291 const GURL& source_origin, |
| 292 content::mojom::WindowContainerType container_type, | 292 content::mojom::WindowContainerType container_type, |
| 293 const GURL& target_url, | 293 const GURL& target_url, |
| 294 const Referrer& referrer, | 294 const Referrer& referrer, |
| 295 const std::string& frame_name, | 295 const std::string& frame_name, |
| 296 WindowOpenDisposition disposition, | 296 WindowOpenDisposition disposition, |
| 297 const blink::mojom::WindowFeatures& features, | 297 const blink::mojom::WindowFeatures& features, |
| 298 bool user_gesture, | 298 bool user_gesture, |
| 299 bool opener_suppressed, | 299 bool opener_suppressed, |
| 300 ResourceContext* context, | |
| 301 bool* no_javascript_access) { | 300 bool* no_javascript_access) { |
| 302 *no_javascript_access = false; | 301 *no_javascript_access = false; |
| 303 return true; | 302 return true; |
| 304 } | 303 } |
| 305 | 304 |
| 306 SpeechRecognitionManagerDelegate* | 305 SpeechRecognitionManagerDelegate* |
| 307 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { | 306 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { |
| 308 return nullptr; | 307 return nullptr; |
| 309 } | 308 } |
| 310 | 309 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 | 454 |
| 456 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { | 455 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { |
| 457 return false; | 456 return false; |
| 458 } | 457 } |
| 459 | 458 |
| 460 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 459 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 461 return false; | 460 return false; |
| 462 } | 461 } |
| 463 | 462 |
| 464 } // namespace content | 463 } // namespace content |
| OLD | NEW |