| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/content_browser_client.h" | 5 #include "content/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "content/browser/webui/empty_web_ui_factory.h" | 8 #include "content/browser/webui/empty_web_ui_factory.h" |
| 9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
| 10 | 10 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 net::CookieOptions* options) { | 79 net::CookieOptions* options) { |
| 80 return true; | 80 return true; |
| 81 } | 81 } |
| 82 | 82 |
| 83 #if defined(OS_LINUX) | 83 #if defined(OS_LINUX) |
| 84 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { | 84 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { |
| 85 return -1; | 85 return -1; |
| 86 } | 86 } |
| 87 #endif | 87 #endif |
| 88 | 88 |
| 89 #if defined(OS_WIN) | |
| 90 bool ContentBrowserClient::SandboxPlugin(CommandLine* command_line, | |
| 91 sandbox::TargetPolicy* policy) { | |
| 92 return false; | |
| 93 } | |
| 94 #endif | |
| 95 | |
| 96 } // namespace content | 89 } // namespace content |
| OLD | NEW |