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

Side by Side Diff: content/shell/browser/shell_content_browser_client.h

Issue 944913002: Transfer v8 snapshot files as file descriptors to child processes on Posix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix iOS Created 5 years, 9 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
« no previous file with comments | « content/shell/DEPS ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/shell/DEPS ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698