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

Side by Side Diff: content/child/child_process.cc

Issue 16328003: Move a bunch of child-only code from content/common to content/child (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/child/child_process.h ('k') | content/child/child_resource_message_filter.h » ('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/common/child_process.h" 5 #include "content/child/child_process.h"
6 6
7 #if defined(OS_POSIX) && !defined(OS_ANDROID) 7 #if defined(OS_POSIX) && !defined(OS_ANDROID)
8 #include <signal.h> // For SigUSR1Handler below. 8 #include <signal.h> // For SigUSR1Handler below.
9 #endif 9 #endif
10 10
11 #include "base/message_loop.h" 11 #include "base/message_loop.h"
12 #include "base/metrics/statistics_recorder.h" 12 #include "base/metrics/statistics_recorder.h"
13 #include "base/process_util.h" 13 #include "base/process_util.h"
14 #include "base/string_number_conversions.h" 14 #include "base/string_number_conversions.h"
15 #include "base/threading/thread.h" 15 #include "base/threading/thread.h"
16 #include "base/utf_string_conversions.h" 16 #include "base/utf_string_conversions.h"
17 #include "content/common/child_thread.h" 17 #include "content/child/child_thread.h"
18 18
19 #if defined(OS_ANDROID) 19 #if defined(OS_ANDROID)
20 #include "base/debug/debugger.h" 20 #include "base/debug/debugger.h"
21 #endif 21 #endif
22 22
23 #if defined(OS_POSIX) && !defined(OS_ANDROID) 23 #if defined(OS_POSIX) && !defined(OS_ANDROID)
24 static void SigUSR1Handler(int signal) { } 24 static void SigUSR1Handler(int signal) { }
25 #endif 25 #endif
26 26
27 namespace content { 27 namespace content {
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 memset(&sa, 0, sizeof(sa)); 133 memset(&sa, 0, sizeof(sa));
134 sa.sa_handler = SigUSR1Handler; 134 sa.sa_handler = SigUSR1Handler;
135 sigaction(SIGUSR1, &sa, NULL); 135 sigaction(SIGUSR1, &sa, NULL);
136 136
137 pause(); 137 pause();
138 #endif // defined(OS_ANDROID) 138 #endif // defined(OS_ANDROID)
139 #endif // defined(OS_POSIX) 139 #endif // defined(OS_POSIX)
140 } 140 }
141 141
142 } // namespace content 142 } // namespace content
OLDNEW
« no previous file with comments | « content/child/child_process.h ('k') | content/child/child_resource_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698