| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 216 } | 216 } | 
| 217 | 217 | 
| 218 ContentBrowserClient::AllowWebBluetoothResult | 218 ContentBrowserClient::AllowWebBluetoothResult | 
| 219 ContentBrowserClient::AllowWebBluetooth( | 219 ContentBrowserClient::AllowWebBluetooth( | 
| 220     content::BrowserContext* browser_context, | 220     content::BrowserContext* browser_context, | 
| 221     const url::Origin& requesting_origin, | 221     const url::Origin& requesting_origin, | 
| 222     const url::Origin& embedding_origin) { | 222     const url::Origin& embedding_origin) { | 
| 223   return AllowWebBluetoothResult::ALLOW; | 223   return AllowWebBluetoothResult::ALLOW; | 
| 224 } | 224 } | 
| 225 | 225 | 
| 226 std::string ContentBrowserClient::GetWebBluetoothBlacklist() { | 226 std::string ContentBrowserClient::GetWebBluetoothBlocklist() { | 
| 227   return std::string(); | 227   return std::string(); | 
| 228 } | 228 } | 
| 229 | 229 | 
| 230 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { | 230 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { | 
| 231   return nullptr; | 231   return nullptr; | 
| 232 } | 232 } | 
| 233 | 233 | 
| 234 std::unique_ptr<storage::QuotaEvictionPolicy> | 234 std::unique_ptr<storage::QuotaEvictionPolicy> | 
| 235 ContentBrowserClient::GetTemporaryStorageEvictionPolicy( | 235 ContentBrowserClient::GetTemporaryStorageEvictionPolicy( | 
| 236     content::BrowserContext* context) { | 236     content::BrowserContext* context) { | 
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 427     const std::string& name) { | 427     const std::string& name) { | 
| 428   return nullptr; | 428   return nullptr; | 
| 429 } | 429 } | 
| 430 | 430 | 
| 431 std::unique_ptr<MemoryCoordinatorDelegate> | 431 std::unique_ptr<MemoryCoordinatorDelegate> | 
| 432 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 432 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 
| 433   return std::unique_ptr<MemoryCoordinatorDelegate>(); | 433   return std::unique_ptr<MemoryCoordinatorDelegate>(); | 
| 434 } | 434 } | 
| 435 | 435 | 
| 436 }  // namespace content | 436 }  // namespace content | 
| OLD | NEW | 
|---|