| 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/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
| 9 #include "ui/gfx/image/image_skia.h" | 9 #include "ui/gfx/image/image_skia.h" |
| 10 | 10 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { | 141 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { |
| 142 return NULL; | 142 return NULL; |
| 143 } | 143 } |
| 144 | 144 |
| 145 net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL( | 145 net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL( |
| 146 const GURL& url, ResourceContext* context) { | 146 const GURL& url, ResourceContext* context) { |
| 147 return NULL; | 147 return NULL; |
| 148 } | 148 } |
| 149 | 149 |
| 150 std::string ContentBrowserClient::GetStoragePartitionIdForChildProcess( |
| 151 content::BrowserContext* browser_context, |
| 152 int child_process_id) { |
| 153 return std::string(); |
| 154 } |
| 155 |
| 150 MediaObserver* ContentBrowserClient::GetMediaObserver() { | 156 MediaObserver* ContentBrowserClient::GetMediaObserver() { |
| 151 return NULL; | 157 return NULL; |
| 152 } | 158 } |
| 153 | 159 |
| 154 WebKit::WebNotificationPresenter::Permission | 160 WebKit::WebNotificationPresenter::Permission |
| 155 ContentBrowserClient::CheckDesktopNotificationPermission( | 161 ContentBrowserClient::CheckDesktopNotificationPermission( |
| 156 const GURL& source_origin, | 162 const GURL& source_origin, |
| 157 ResourceContext* context, | 163 ResourceContext* context, |
| 158 int render_process_id) { | 164 int render_process_id) { |
| 159 return WebKit::WebNotificationPresenter::PermissionAllowed; | 165 return WebKit::WebNotificationPresenter::PermissionAllowed; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 #endif | 221 #endif |
| 216 | 222 |
| 217 #if defined(USE_NSS) | 223 #if defined(USE_NSS) |
| 218 crypto::CryptoModuleBlockingPasswordDelegate* | 224 crypto::CryptoModuleBlockingPasswordDelegate* |
| 219 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 225 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
| 220 return NULL; | 226 return NULL; |
| 221 } | 227 } |
| 222 #endif | 228 #endif |
| 223 | 229 |
| 224 } // namespace content | 230 } // namespace content |
| OLD | NEW |