OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 return shell_browser_main_parts_; | 86 return shell_browser_main_parts_; |
87 } | 87 } |
88 | 88 |
89 private: | 89 private: |
90 ShellBrowserContext* ShellBrowserContextForBrowserContext( | 90 ShellBrowserContext* ShellBrowserContextForBrowserContext( |
91 BrowserContext* content_browser_context); | 91 BrowserContext* content_browser_context); |
92 | 92 |
93 scoped_ptr<ShellResourceDispatcherHostDelegate> | 93 scoped_ptr<ShellResourceDispatcherHostDelegate> |
94 resource_dispatcher_host_delegate_; | 94 resource_dispatcher_host_delegate_; |
95 | 95 |
| 96 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 97 base::ScopedFD v8_natives_fd_; |
| 98 base::ScopedFD v8_snapshot_fd_; |
| 99 #endif |
| 100 |
96 ShellBrowserMainParts* shell_browser_main_parts_; | 101 ShellBrowserMainParts* shell_browser_main_parts_; |
97 }; | 102 }; |
98 | 103 |
99 } // namespace content | 104 } // namespace content |
100 | 105 |
101 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 106 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |