Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 2501913002: Change the NaCl loader and broker processes to use the ServiceManager. (Closed)
Patch Set: rebase Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 // Embedders should override this method and return different SIDs for each 413 // Embedders should override this method and return different SIDs for each
414 // sandbox type. Note: All content level tests will run child processes in the 414 // sandbox type. Note: All content level tests will run child processes in the
415 // same AppContainer. 415 // same AppContainer.
416 return base::string16( 416 return base::string16(
417 L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-" 417 L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-"
418 L"924012148-129201922"); 418 L"924012148-129201922");
419 } 419 }
420 #endif // defined(OS_WIN) 420 #endif // defined(OS_WIN)
421 421
422 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( 422 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay(
423 const std::string& name) { 423 base::StringPiece name) {
424 return nullptr; 424 return nullptr;
425 } 425 }
426 426
427 std::vector<ContentBrowserClient::ServiceManifestInfo>
428 ContentBrowserClient::GetExtraServiceManifests() {
429 return std::vector<ContentBrowserClient::ServiceManifestInfo>();
430 }
431
427 std::unique_ptr<MemoryCoordinatorDelegate> 432 std::unique_ptr<MemoryCoordinatorDelegate>
428 ContentBrowserClient::GetMemoryCoordinatorDelegate() { 433 ContentBrowserClient::GetMemoryCoordinatorDelegate() {
429 return std::unique_ptr<MemoryCoordinatorDelegate>(); 434 return std::unique_ptr<MemoryCoordinatorDelegate>();
430 } 435 }
431 436
432 ::rappor::RapporService* ContentBrowserClient::GetRapporService() { 437 ::rappor::RapporService* ContentBrowserClient::GetRapporService() {
433 return nullptr; 438 return nullptr;
434 } 439 }
435 440
436 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { 441 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() {
437 return false; 442 return false;
438 } 443 }
439 444
440 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 445 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
441 return false; 446 return false;
442 } 447 }
443 448
444 } // namespace content 449 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/shell/browser/shell_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698