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

Side by Side Diff: content/zygote/zygote_main_linux.cc

Issue 16667019: Rename base/hash_tables to base/containers/hash_tables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/zygote/zygote_linux.h ('k') | courgette/difference_estimator.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/zygote/zygote_main.h" 5 #include "content/zygote/zygote_main.h"
6 6
7 #include <dlfcn.h> 7 #include <dlfcn.h>
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #include <pthread.h> 9 #include <pthread.h>
10 #include <stdio.h> 10 #include <stdio.h>
11 #include <sys/socket.h> 11 #include <sys/socket.h>
12 #include <sys/stat.h> 12 #include <sys/stat.h>
13 #include <sys/types.h> 13 #include <sys/types.h>
14 #include <sys/wait.h> 14 #include <sys/wait.h>
15 #include <unistd.h> 15 #include <unistd.h>
16 16
17 #include "base/basictypes.h" 17 #include "base/basictypes.h"
18 #include "base/command_line.h" 18 #include "base/command_line.h"
19 #include "base/containers/hash_tables.h"
19 #include "base/files/file_path.h" 20 #include "base/files/file_path.h"
20 #include "base/hash_tables.h"
21 #include "base/linux_util.h" 21 #include "base/linux_util.h"
22 #include "base/memory/scoped_ptr.h" 22 #include "base/memory/scoped_ptr.h"
23 #include "base/pickle.h" 23 #include "base/pickle.h"
24 #include "base/posix/eintr_wrapper.h" 24 #include "base/posix/eintr_wrapper.h"
25 #include "base/posix/unix_domain_socket_linux.h" 25 #include "base/posix/unix_domain_socket_linux.h"
26 #include "base/process_util.h" 26 #include "base/process_util.h"
27 #include "base/rand_util.h" 27 #include "base/rand_util.h"
28 #include "base/sys_info.h" 28 #include "base/sys_info.h"
29 #include "build/build_config.h" 29 #include "build/build_config.h"
30 #include "content/common/font_config_ipc_linux.h" 30 #include "content/common/font_config_ipc_linux.h"
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 } 465 }
466 466
467 int sandbox_flags = linux_sandbox->GetStatus(); 467 int sandbox_flags = linux_sandbox->GetStatus();
468 468
469 Zygote zygote(sandbox_flags, forkdelegate); 469 Zygote zygote(sandbox_flags, forkdelegate);
470 // This function call can return multiple times, once per fork(). 470 // This function call can return multiple times, once per fork().
471 return zygote.ProcessRequests(); 471 return zygote.ProcessRequests();
472 } 472 }
473 473
474 } // namespace content 474 } // namespace content
OLDNEW
« no previous file with comments | « content/zygote/zygote_linux.h ('k') | courgette/difference_estimator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698