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

Side by Side Diff: components/nacl/browser/nacl_process_host.cc

Issue 84533002: [Build Fix] Add missing #include (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « chrome/browser/ui/webui/nacl_ui.cc ('k') | no next file » | 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 "components/nacl/browser/nacl_process_host.h" 5 #include "components/nacl/browser/nacl_process_host.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/base_switches.h" 11 #include "base/base_switches.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/file_util.h" 14 #include "base/file_util.h"
15 #include "base/message_loop/message_loop.h" 15 #include "base/message_loop/message_loop.h"
16 #include "base/metrics/histogram.h" 16 #include "base/metrics/histogram.h"
17 #include "base/path_service.h" 17 #include "base/path_service.h"
18 #include "base/process/launch.h" 18 #include "base/process/launch.h"
19 #include "base/process/process_iterator.h" 19 #include "base/process/process_iterator.h"
20 #include "base/rand_util.h" 20 #include "base/rand_util.h"
21 #include "base/strings/string_number_conversions.h" 21 #include "base/strings/string_number_conversions.h"
22 #include "base/strings/string_split.h" 22 #include "base/strings/string_split.h"
23 #include "base/strings/string_util.h" 23 #include "base/strings/string_util.h"
24 #include "base/strings/stringprintf.h" 24 #include "base/strings/stringprintf.h"
25 #include "base/strings/utf_string_conversions.h" 25 #include "base/strings/utf_string_conversions.h"
26 #include "base/threading/sequenced_worker_pool.h"
26 #include "base/win/windows_version.h" 27 #include "base/win/windows_version.h"
27 #include "build/build_config.h" 28 #include "build/build_config.h"
28 #include "components/nacl/browser/nacl_browser.h" 29 #include "components/nacl/browser/nacl_browser.h"
29 #include "components/nacl/browser/nacl_host_message_filter.h" 30 #include "components/nacl/browser/nacl_host_message_filter.h"
30 #include "components/nacl/common/nacl_cmd_line.h" 31 #include "components/nacl/common/nacl_cmd_line.h"
31 #include "components/nacl/common/nacl_host_messages.h" 32 #include "components/nacl/common/nacl_host_messages.h"
32 #include "components/nacl/common/nacl_messages.h" 33 #include "components/nacl/common/nacl_messages.h"
33 #include "components/nacl/common/nacl_process_type.h" 34 #include "components/nacl/common/nacl_process_type.h"
34 #include "components/nacl/common/nacl_switches.h" 35 #include "components/nacl/common/nacl_switches.h"
35 #include "content/public/browser/browser_child_process_host.h" 36 #include "content/public/browser/browser_child_process_host.h"
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 process_handle.Take(), info, 1014 process_handle.Take(), info,
1014 base::MessageLoopProxy::current(), 1015 base::MessageLoopProxy::current(),
1015 base::Bind(&NaClProcessHost::OnDebugExceptionHandlerLaunchedByBroker, 1016 base::Bind(&NaClProcessHost::OnDebugExceptionHandlerLaunchedByBroker,
1016 weak_factory_.GetWeakPtr())); 1017 weak_factory_.GetWeakPtr()));
1017 return true; 1018 return true;
1018 } 1019 }
1019 } 1020 }
1020 #endif 1021 #endif
1021 1022
1022 } // namespace nacl 1023 } // namespace nacl
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/nacl_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698