| 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 const GURL& url) { | 362 const GURL& url) { |
| 363 return false; | 363 return false; |
| 364 } | 364 } |
| 365 | 365 |
| 366 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( | 366 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( |
| 367 BrowserContext* browser_context, | 367 BrowserContext* browser_context, |
| 368 const GURL& url) { | 368 const GURL& url) { |
| 369 return false; | 369 return false; |
| 370 } | 370 } |
| 371 | 371 |
| 372 std::string ContentBrowserClient::GetShellUserIdForBrowserContext( | 372 std::string ContentBrowserClient::GetServiceUserIdForBrowserContext( |
| 373 BrowserContext* browser_context) { | 373 BrowserContext* browser_context) { |
| 374 return base::GenerateGUID(); | 374 return base::GenerateGUID(); |
| 375 } | 375 } |
| 376 | 376 |
| 377 PresentationServiceDelegate* | 377 PresentationServiceDelegate* |
| 378 ContentBrowserClient::GetPresentationServiceDelegate( | 378 ContentBrowserClient::GetPresentationServiceDelegate( |
| 379 WebContents* web_contents) { | 379 WebContents* web_contents) { |
| 380 return nullptr; | 380 return nullptr; |
| 381 } | 381 } |
| 382 | 382 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 return false; | 424 return false; |
| 425 } | 425 } |
| 426 #endif // defined(OS_WIN) | 426 #endif // defined(OS_WIN) |
| 427 | 427 |
| 428 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( | 428 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( |
| 429 const std::string& name) { | 429 const std::string& name) { |
| 430 return nullptr; | 430 return nullptr; |
| 431 } | 431 } |
| 432 | 432 |
| 433 } // namespace content | 433 } // namespace content |
| OLD | NEW |