OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 | 6 |
7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <objidl.h> | 9 #include <objidl.h> |
10 #include <mlang.h> | 10 #include <mlang.h> |
(...skipping 12 matching lines...) Expand all Loading... |
23 // TODO(jar): DNS calls should be renderer specific, not including browser. | 23 // TODO(jar): DNS calls should be renderer specific, not including browser. |
24 #include "chrome/browser/net/dns_global.h" | 24 #include "chrome/browser/net/dns_global.h" |
25 #include "chrome/common/chrome_switches.h" | 25 #include "chrome/common/chrome_switches.h" |
26 #include "chrome/common/chrome_paths.h" | 26 #include "chrome/common/chrome_paths.h" |
27 #include "chrome/common/render_messages.h" | 27 #include "chrome/common/render_messages.h" |
28 #include "chrome/common/transport_dib.h" | 28 #include "chrome/common/transport_dib.h" |
29 #include "chrome/renderer/render_view.h" | 29 #include "chrome/renderer/render_view.h" |
30 #include "ipc/ipc_channel.h" | 30 #include "ipc/ipc_channel.h" |
31 #include "ipc/ipc_message_utils.h" | 31 #include "ipc/ipc_message_utils.h" |
32 #include "media/base/media.h" | 32 #include "media/base/media.h" |
| 33 #include "native_client/src/trusted/plugin/nacl_entry_points.h" |
33 #include "webkit/glue/webkit_glue.h" | 34 #include "webkit/glue/webkit_glue.h" |
34 | 35 |
35 //----------------------------------------------------------------------------- | 36 //----------------------------------------------------------------------------- |
36 | 37 |
37 RenderProcess::RenderProcess() | 38 RenderProcess::RenderProcess() |
38 : ALLOW_THIS_IN_INITIALIZER_LIST(shared_mem_cache_cleaner_( | 39 : ALLOW_THIS_IN_INITIALIZER_LIST(shared_mem_cache_cleaner_( |
39 base::TimeDelta::FromSeconds(5), | 40 base::TimeDelta::FromSeconds(5), |
40 this, &RenderProcess::ClearTransportDIBCache)), | 41 this, &RenderProcess::ClearTransportDIBCache)), |
41 sequence_number_(0) { | 42 sequence_number_(0) { |
42 in_process_plugins_ = InProcessPlugins(); | 43 in_process_plugins_ = InProcessPlugins(); |
(...skipping 30 matching lines...) Expand all Loading... |
73 } | 74 } |
74 | 75 |
75 if (command_line.HasSwitch(switches::kEnableWatchdog)) { | 76 if (command_line.HasSwitch(switches::kEnableWatchdog)) { |
76 // TODO(JAR): Need to implement renderer IO msgloop watchdog. | 77 // TODO(JAR): Need to implement renderer IO msgloop watchdog. |
77 } | 78 } |
78 | 79 |
79 if (command_line.HasSwitch(switches::kDumpHistogramsOnExit)) { | 80 if (command_line.HasSwitch(switches::kDumpHistogramsOnExit)) { |
80 StatisticsRecorder::set_dump_on_exit(true); | 81 StatisticsRecorder::set_dump_on_exit(true); |
81 } | 82 } |
82 | 83 |
| 84 if (command_line.HasSwitch(switches::kInternalNaCl)) |
| 85 RegisterInternalNaClPlugin(); |
| 86 |
83 FilePath module_path; | 87 FilePath module_path; |
84 initialized_media_library_ = | 88 initialized_media_library_ = |
85 PathService::Get(base::DIR_MODULE, &module_path) && | 89 PathService::Get(base::DIR_MODULE, &module_path) && |
86 media::InitializeMediaLibrary(module_path); | 90 media::InitializeMediaLibrary(module_path); |
87 } | 91 } |
88 | 92 |
89 RenderProcess::~RenderProcess() { | 93 RenderProcess::~RenderProcess() { |
90 // TODO(port) | 94 // TODO(port) |
91 // Try and limit what we pull in for our non-Win unit test bundle | 95 // Try and limit what we pull in for our non-Win unit test bundle |
92 #ifndef NDEBUG | 96 #ifndef NDEBUG |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 } | 243 } |
240 | 244 |
241 void RenderProcess::ClearTransportDIBCache() { | 245 void RenderProcess::ClearTransportDIBCache() { |
242 for (size_t i = 0; i < arraysize(shared_mem_cache_); ++i) { | 246 for (size_t i = 0; i < arraysize(shared_mem_cache_); ++i) { |
243 if (shared_mem_cache_[i]) { | 247 if (shared_mem_cache_[i]) { |
244 FreeTransportDIB(shared_mem_cache_[i]); | 248 FreeTransportDIB(shared_mem_cache_[i]); |
245 shared_mem_cache_[i] = NULL; | 249 shared_mem_cache_[i] = NULL; |
246 } | 250 } |
247 } | 251 } |
248 } | 252 } |
OLD | NEW |