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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "content/browser/content_browser_client.h" | 9 #include "content/browser/content_browser_client.h" |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... | |
37 const GURL& first_party, | 37 const GURL& first_party, |
38 const std::string& cookie_line, | 38 const std::string& cookie_line, |
39 const content::ResourceContext& context, | 39 const content::ResourceContext& context, |
40 int render_process_id, | 40 int render_process_id, |
41 int render_view_id, | 41 int render_view_id, |
42 net::CookieOptions* options); | 42 net::CookieOptions* options); |
43 #if defined(OS_LINUX) | 43 #if defined(OS_LINUX) |
44 // Can return an optional fd for crash handling, otherwise returns -1. | 44 // Can return an optional fd for crash handling, otherwise returns -1. |
45 virtual int GetCrashSignalFD(const std::string& process_type); | 45 virtual int GetCrashSignalFD(const std::string& process_type); |
46 #endif | 46 #endif |
47 | |
48 #if defined(OS_WIN) | |
cpu_(ooo_6.6-7.5)
2011/05/27 20:19:09
the code only sandboxes flash, so there should be
jam
2011/05/27 20:25:54
we normally only comment the content interface fun
| |
49 virtual bool SandboxPlugin(CommandLine* command_line, | |
50 sandbox::TargetPolicy* policy); | |
51 #endif | |
47 }; | 52 }; |
48 | 53 |
49 } // namespace chrome | 54 } // namespace chrome |
50 | 55 |
51 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 56 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |