| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 bool* in_memory) { | 170 bool* in_memory) { |
| 171 partition_domain->clear(); | 171 partition_domain->clear(); |
| 172 partition_name->clear(); | 172 partition_name->clear(); |
| 173 *in_memory = false; | 173 *in_memory = false; |
| 174 } | 174 } |
| 175 | 175 |
| 176 MediaObserver* ContentBrowserClient::GetMediaObserver() { | 176 MediaObserver* ContentBrowserClient::GetMediaObserver() { |
| 177 return NULL; | 177 return NULL; |
| 178 } | 178 } |
| 179 | 179 |
| 180 WebRTCInternals* ContentBrowserClient::GetWebRTCInternals() { |
| 181 return NULL; |
| 182 } |
| 183 |
| 180 WebKit::WebNotificationPresenter::Permission | 184 WebKit::WebNotificationPresenter::Permission |
| 181 ContentBrowserClient::CheckDesktopNotificationPermission( | 185 ContentBrowserClient::CheckDesktopNotificationPermission( |
| 182 const GURL& source_origin, | 186 const GURL& source_origin, |
| 183 ResourceContext* context, | 187 ResourceContext* context, |
| 184 int render_process_id) { | 188 int render_process_id) { |
| 185 return WebKit::WebNotificationPresenter::PermissionAllowed; | 189 return WebKit::WebNotificationPresenter::PermissionAllowed; |
| 186 } | 190 } |
| 187 | 191 |
| 188 bool ContentBrowserClient::CanCreateWindow(const GURL& opener_url, | 192 bool ContentBrowserClient::CanCreateWindow(const GURL& opener_url, |
| 189 const GURL& origin, | 193 const GURL& origin, |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 #endif | 252 #endif |
| 249 | 253 |
| 250 #if defined(USE_NSS) | 254 #if defined(USE_NSS) |
| 251 crypto::CryptoModuleBlockingPasswordDelegate* | 255 crypto::CryptoModuleBlockingPasswordDelegate* |
| 252 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 256 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
| 253 return NULL; | 257 return NULL; |
| 254 } | 258 } |
| 255 #endif | 259 #endif |
| 256 | 260 |
| 257 } // namespace content | 261 } // namespace content |
| OLD | NEW |