| Index: content/public/browser/content_browser_client.cc
|
| diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
|
| index 3ae2a8eea5ecd9f042b6b611d6d2fa0c013f4a01..87d2f347185e221e30aedbd13211348bee2a11e6 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -160,12 +160,6 @@ net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL(
|
| return NULL;
|
| }
|
|
|
| -std::string ContentBrowserClient::GetStoragePartitionIdForChildProcess(
|
| - BrowserContext* browser_context,
|
| - int child_process_id) {
|
| - return std::string();
|
| -}
|
| -
|
| std::string ContentBrowserClient::GetStoragePartitionIdForSite(
|
| BrowserContext* browser_context,
|
| const GURL& site) {
|
| @@ -180,6 +174,17 @@ bool ContentBrowserClient::IsValidStoragePartitionId(
|
| return partition_id.empty();
|
| }
|
|
|
| +void ContentBrowserClient::GetStoragePartitionConfigForSite(
|
| + BrowserContext* browser_context,
|
| + const GURL& site,
|
| + std::string* partition_domain,
|
| + std::string* partition_name,
|
| + bool* in_memory) {
|
| + partition_domain->clear();
|
| + partition_name->clear();
|
| + *in_memory = false;
|
| +}
|
| +
|
| MediaObserver* ContentBrowserClient::GetMediaObserver() {
|
| return NULL;
|
| }
|
|
|