| Index: content/public/browser/content_browser_client.cc
|
| diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
|
| index 0e07ec7c750374123038bdeb728a1a7620b32ec4..aaa9bc029814840623e855095ddac150d13c3cc4 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/files/file_path.h"
|
| #include "content/public/browser/client_certificate_delegate.h"
|
| +#include "content/public/common/sandbox_type.h"
|
| #include "ui/gfx/image/image_skia.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -335,6 +336,16 @@ void ContentBrowserClient::OpenURL(
|
| const wchar_t* ContentBrowserClient::GetResourceDllName() {
|
| return nullptr;
|
| }
|
| +
|
| +base::string16 ContentBrowserClient::GetAppContainerSidForSandboxType(
|
| + int sandbox_type) const {
|
| + // Embedders should override this method and return different SIDs for each
|
| + // sandbox type. Note: All content level tests will run child processes in the
|
| + // same AppContainer.
|
| + return base::string16(
|
| + L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-"
|
| + L"924012148-129201922");
|
| +}
|
| #endif
|
|
|
| #if defined(VIDEO_HOLE)
|
|
|