Home | History | Annotate | Download | only in renderer

Lines Matching defs:nacl

5 #include "components/nacl/renderer/nexe_load_manager.h"
12 #include "components/nacl/common/nacl_host_messages.h"
13 #include "components/nacl/common/nacl_types.h"
14 #include "components/nacl/renderer/histogram.h"
15 #include "components/nacl/renderer/manifest_service_channel.h"
16 #include "components/nacl/renderer/pnacl_translation_resource_host.h"
17 #include "components/nacl/renderer/progress_event.h"
18 #include "components/nacl/renderer/sandbox_arch.h"
19 #include "components/nacl/renderer/trusted_plugin_channel.h"
49 // The "nacl" attribute of the <embed> tag. We use the value of this attribute
50 // to find the manifest file when NaCl is registered as a plug-in for another
53 const char* const kNaClManifestAttribute = "nacl";
58 const char* const kNaClMIMEType = "application/x-nacl";
81 namespace nacl {
104 HistogramTimeLarge("NaCl.ModuleUptime.Normal", uptime.InMilliseconds());
118 is_installed_ ? "NaCl.HttpStatusCodeClass.Nexe.InstalledApp" :
119 "NaCl.HttpStatusCodeClass.Nexe.NotInstalledApp",
137 HistogramSizeKB("NaCl.Perf.Size.Nexe",
140 "NaCl.Perf.StartupTime.NexeDownload", time_since_open, nexe_size_);
142 // Inform JavaScript that we successfully downloaded the nacl module.
157 "NaCl.Perf.StartupTime.LoadModule", load_module_time, nexe_size_);
159 "NaCl.Perf.StartupTime.Total", ready_time_ - init_time_, nexe_size_);
202 std::string error_string = std::string("NaCl module load failed: ") +
223 std::string error_string("NaCl module load failed: user aborted");
236 // The NaCl module voluntarily exited. However, this is still a
331 "NaCl.Perf.StartupTime.NaClOverhead", overhead, nexe_size_);
376 // and 'nacl' will be the URL for the manifest.
385 VLOG(1) << "WARNING: 'nacl' property is incorrect. Use 'src'.";
406 HistogramTimeMedium("NaCl.ModuleUptime.Crash", uptime.InMilliseconds());
408 std::string message("NaCl module crashed");
425 } // namespace nacl