| 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 "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/guid.h" | 8 #include "base/guid.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "content/public/browser/client_certificate_delegate.h" | 10 #include "content/public/browser/client_certificate_delegate.h" |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 } | 209 } |
| 210 | 210 |
| 211 ContentBrowserClient::AllowWebBluetoothResult | 211 ContentBrowserClient::AllowWebBluetoothResult |
| 212 ContentBrowserClient::AllowWebBluetooth( | 212 ContentBrowserClient::AllowWebBluetooth( |
| 213 content::BrowserContext* browser_context, | 213 content::BrowserContext* browser_context, |
| 214 const url::Origin& requesting_origin, | 214 const url::Origin& requesting_origin, |
| 215 const url::Origin& embedding_origin) { | 215 const url::Origin& embedding_origin) { |
| 216 return AllowWebBluetoothResult::ALLOW; | 216 return AllowWebBluetoothResult::ALLOW; |
| 217 } | 217 } |
| 218 | 218 |
| 219 std::string ContentBrowserClient::GetWebBluetoothBlacklist() { | 219 std::string ContentBrowserClient::GetWebBluetoothBlocklist() { |
| 220 return std::string(); | 220 return std::string(); |
| 221 } | 221 } |
| 222 | 222 |
| 223 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { | 223 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { |
| 224 return nullptr; | 224 return nullptr; |
| 225 } | 225 } |
| 226 | 226 |
| 227 std::unique_ptr<storage::QuotaEvictionPolicy> | 227 std::unique_ptr<storage::QuotaEvictionPolicy> |
| 228 ContentBrowserClient::GetTemporaryStorageEvictionPolicy( | 228 ContentBrowserClient::GetTemporaryStorageEvictionPolicy( |
| 229 content::BrowserContext* context) { | 229 content::BrowserContext* context) { |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 const std::string& name) { | 420 const std::string& name) { |
| 421 return nullptr; | 421 return nullptr; |
| 422 } | 422 } |
| 423 | 423 |
| 424 std::unique_ptr<MemoryCoordinatorDelegate> | 424 std::unique_ptr<MemoryCoordinatorDelegate> |
| 425 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 425 ContentBrowserClient::GetMemoryCoordinatorDelegate() { |
| 426 return std::unique_ptr<MemoryCoordinatorDelegate>(); | 426 return std::unique_ptr<MemoryCoordinatorDelegate>(); |
| 427 } | 427 } |
| 428 | 428 |
| 429 } // namespace content | 429 } // namespace content |
| OLD | NEW |