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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-" | 422 L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-" |
423 L"924012148-129201922"); | 423 L"924012148-129201922"); |
424 } | 424 } |
425 #endif // defined(OS_WIN) | 425 #endif // defined(OS_WIN) |
426 | 426 |
427 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( | 427 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( |
428 const std::string& name) { | 428 const std::string& name) { |
429 return nullptr; | 429 return nullptr; |
430 } | 430 } |
431 | 431 |
| 432 std::vector<ContentBrowserClient::ServiceManifestInfo> |
| 433 ContentBrowserClient::GetExtraServiceManifests() { |
| 434 return std::vector<ContentBrowserClient::ServiceManifestInfo>(); |
| 435 } |
| 436 |
432 std::unique_ptr<MemoryCoordinatorDelegate> | 437 std::unique_ptr<MemoryCoordinatorDelegate> |
433 ContentBrowserClient::GetMemoryCoordinatorDelegate() { | 438 ContentBrowserClient::GetMemoryCoordinatorDelegate() { |
434 return std::unique_ptr<MemoryCoordinatorDelegate>(); | 439 return std::unique_ptr<MemoryCoordinatorDelegate>(); |
435 } | 440 } |
436 | 441 |
437 } // namespace content | 442 } // namespace content |
OLD | NEW |