Native Client is an open-source technology that allows you to build web applications that seamlessly execute native compiled code inside the browser

learn more… | top users | synonyms

1
vote
0answers
7 views

Google Chrome extensions interaction with Native Client Applications

Is it possible to write a Chrome Extension that will interact with a Native Client application? I use IRSSI through the NaCl Secure Shell application, and I would like to write an extension that ...
1
vote
0answers
26 views

How can I port my executable player (play.exe) for chrome

I want to port my player to chrome like flash player. Is it have any possible solutions can do it? I found that NaCl maybe is a solution, but It may have to redesign my player code. So, have any way ...
0
votes
2answers
31 views

Access to non-sandboxed disk in Chrome Native Client

Chrome Native Client provides File IO API to access sandboxed local disk. But is it possible to access non-sandboxed disk, and if yes, how?
0
votes
3answers
62 views

How to force Chrome to prerender more pages?

I'm learning about Chrome and Native Client. Basically i want to increase number of pages that are prerendered by chrome (now its just one page). I was thinking about creating a extension that would ...
0
votes
0answers
62 views

Shared Inter-Process Memory between NaCl and NPAPI or any other native process

I have an NaCl plugin which renders up to 4 full HD video views; it's a video editing tool. It currently runs when chrome is launched with sandboxing disabled, because it reads the video files from ...
0
votes
1answer
23 views

Trying to install nacl (native client) from google but getting syntax error

C:\nacl_sdk>naclsdk list File "C:\nacl_sdk\sdk_tools\sdk_update_main.py", line 720 print "Native Client SDK Updater, version r%s" % (REVISION,) ...
5
votes
1answer
175 views

Why is my program so slow?

Someone decided to do a quick test to see how native client compared to javascript in terms of speed. They did that by running 10 000 000 sqrt calculations and measuring the time it took. The result ...
-1
votes
0answers
20 views

Can't compile native client code [closed]

I've installed nacl_sdk and pepper_26 on my machine but i can't make tutorial project. I always get this error. Does anyone know what happens? Title
0
votes
1answer
63 views

Debugging native app on ARM chromebook?

What's the easiest way to debug the ARM build of a Chrome NACL app (Samsung Chromebook) ? Can we see printf output? What about Chrome debug output? Can we use gdb remotely? Thanks
1
vote
2answers
62 views

Google pnacl: how to use the compiler/linker

I want to compile the hello_world driver using PNacl; the only problem is that I don't know which options to pass to the compiler. To recap, the intention here is to go from .cc (C++ file) to .bc ...
1
vote
0answers
77 views

PPAPI plugin doesn't load in metro mode Chrome in windows 8

I developed a chrome PPAPI plugin. The plugin works fine in Chrome on windows XP, windows 7. It also works in desktop mode Chrome in windows 8. However, it doesn't load in metro mode Chrome as a ...
1
vote
2answers
146 views

Accessing HTML5 <canvas> from NaCl code

I'm interested in porting my HTML5 Canvas / JavaScript game to NaCl / C++ but I can't find any good sample source code of NaCl accessing the canvas. Could somebody point me to a few samples? Please ...
0
votes
0answers
33 views

how to control system mouse move and click using chrome native client

I have discovered a long time for program a chrome app or extension to control users mouse move and click, do chrome native client do this, I review the pepper API but only see the mouse lock and ...
0
votes
2answers
120 views

How to validate a referring server. ($_SERVER[“HTTP_REFERER”])

My client's site provides a certificate to their customers on a per IP basis, when those servers pass our test. This certification is only good for the IP that was tested. So we need to be the ones ...
2
votes
1answer
207 views

Is Google's native Client available for Android's webview and Chrome?

Is NaCl and It's Pepper API available on Chrome for Android ? is it available for WebView for Jelly Bean ?
1
vote
1answer
79 views

Deploying a webapp that uses chrome native client without involving webstore

I'm investigating the possibility of building a chrome app for a specific enterprise customer. This app would only be used by that customer (ie, it is not a general purpose app). Among the use cases ...
0
votes
1answer
58 views

Sample Program of C using PPB_ImageData Google Native Client

Are there any reference sample examples in c language using the PPB_ImageData in Google Native Client? I need to get the image data from the html canvas and process the image using a c-library.
0
votes
1answer
130 views

Google Native Client Render Loop

I am attempting to implement a render loop with Google Native Client, I am aware you can not make Pepper API calls on any thread but the main thread, so I am trying to implement the following. ...
0
votes
1answer
96 views

Check if a directory exists within a google-nativeclient file system?

I'm trying to check if a directory exists in a Native Client file system but can't find any functions to do it. I tried creating a PPB_FileRef for the directory and then opening that using ...
0
votes
2answers
308 views

Could Native Client web application create windows and common controls while runtime?

I talking about Native Client thing for google chrome... Developers claim it can run native code compiled from c / c++ in browser's sandbox. They describe a lot of things, but never point at what I ...
1
vote
1answer
116 views

Can the visual studio debugger still be used to debug ppapi trusted plugins when using the --ppapi-out-of-process flag?

I am using the new MessageLoop class introduced in pepper-25 so I can run a background thread with blocking ppapi calls for File IO. Up until now I have been running chrome from visual studio with the ...
0
votes
1answer
53 views

nativeclient ld libstdc++.so.6: invalid DSO for symbol

I'm trying to build a native client application using SDL, and a link error had me stumped. This is the simplest command line that reproduces the error. Has anyone seen this before? \# ...
1
vote
1answer
179 views

How to send Mozilla Firefox IonMonkey MIR over HTTP (like JS)?

Google Native Client makes it possible to send standartized native code from server to browser and execute it. The code runs fast. Recently Mozilla released new JavaScript VM called IonMonkey, that ...
0
votes
1answer
220 views

Error when running Native Client SDK examples

I had followed the instructions in https://developers.google.com/native-client/devguide/tutorial#verify However, it seems all the examples are not running well. Had tried set NACL_SDK_ROOT to ...
0
votes
1answer
272 views

Calling Windows API from Native Client/Pepper Plugin

My intention is to create a chrome plugin for the windows users. Is that possible to call windows api from Native Client /PPAPI. If possible how?
0
votes
1answer
73 views

Debugging 32 bit NACL exe on MAC?

I am wishing to debug 32 bit nacl exe on mac platform. I couldnt debug it out since on mac platform i couldnt find a 32bit nacl-gdb. Has anyone successfully done it?
0
votes
1answer
105 views

How to use the native client toolchain?

I had compiled the native client toolchain in my own Linux OS. In native client source code I found that using make test_hello_world_nexe can build a hello world program and run it. To my ...
0
votes
1answer
195 views

How can one port Cave Story (NXEngine) to Native Client

So, Native Client can run C++ code from the browser, and I know that the NX Engine is build from C++, and can be tweaked to run on Android. So, if the NX Engine can run Cave Story, and that can in ...
0
votes
2answers
113 views

Google Chrome Extension using NaCL with an external library

I'm developing a Google Chrome extension using the NaCL. It's pretty cool and easy to use, but I have a doubt. My extension needs the GPGME (GnuPG Made Easy), so I compile that library with ...
0
votes
1answer
136 views

Using libuv to watch for file changes

I want to build a Chrome Extension for the Developer Tools that watches for changes a given folder and refreshes/updates the CSS/JS/image files in the browser. There is a similar approach already: ...
2
votes
1answer
97 views

Audio effects with NaCl extension

I have just started investigating NaCl in the hopes of making an audio browser extension. There is a sine wave demo in the documentation, so it seems that making a synthesizer would be trivial. I am ...
0
votes
0answers
115 views

compiling / building Chrome Native Client SDK on Ubuntu-12.04 [closed]

How do you compile the examples in Native Client SDK on Ubuntu-12.04? Details: I took identical steps on Ubuntu-10.04 and Ubuntu-12.04, namely downloaded nacl_sdk.zip from ...
0
votes
1answer
83 views

Compiling native client's hello_world.c

In the pepper_21 examples folder is a hello_world.c file I'm trying to compile. Here's the command I'm using: $NACL_SDK_ROOT/toolchain/linux_x86_newlib/bin/x86_64-nacl-gcc hello_world.c -o a.nexe ...
0
votes
1answer
260 views

On Windows, how to run Google's Native Client run outside of Chrome?

This question is specifically about Windows (64-bit). A similar question was asked here, but the answers appear to be specific to Linux (and perhaps OS X). The non-Windows answer is to use sel_ldr ...
0
votes
1answer
85 views

nacl openal example doesn't work on Windows

I'm having trouble getting openal sound working on Win7. I've built the naclports openal-ogg example against pepper_23 on a Mac machine, and then run them in Win7 Chrome. The result is skipping sound, ...
0
votes
0answers
57 views

Pepper api examples not working, facing error “Cannot call method 'post message'”

I am facing same issue as in http://code.google.com/p/chromium/issues/detail?id=104664 I am using the latest chrome version 23.0.127 and on a iMac LION OS Followed the steps as in ...
0
votes
2answers
188 views

Does Chrome NaCl have anything to do with V8?

Does one enable the other, or does one affect the other? It seems V8 lets native C++ access Javascript, and NaCl lets you run native code in the browser. Sorry for the naive question. I'm behind ...
1
vote
1answer
54 views

Updating the Chrome NaCl SDK for a Different OS

I need to download (update) my NaCl toolchain on my Mac Mini, but I don't have internet access where I am. I'm able to get my Windows laptop to a Wifi hotspot, but I can't see any option to download a ...
1
vote
1answer
81 views

Google NaCl get IP and system information

Beginner question Problem Function calls gethostbyname, getifaddrs, uname, system always fails. I guess that the Native Client runtime system prevents executing considering it as unsafe activity? ...
2
votes
1answer
186 views

Make <object> tag fill the whole window and resize with it

I have a NaCl plugin for Chrome that I'd like to fill the whole window with. HTML is like this: <!DOCTYPE html> <html> <head></head> <body> <div ...
1
vote
2answers
187 views

Installing Chrome Native Client SDK

For the last few days I have been trying ti install the Native Client SDK for chrome in Windows and/or Ubuntu. I'm behind a corporate network, and the only internet access is through an HTTP proxy ...
0
votes
2answers
215 views

Using a C++ library in Google Native Client

I am completely new to Native Client and unfortunately I am also quite inexperienced with 'make', compiling etc., so I hope you may give me some basic information on how to approach my problem. So ...
1
vote
1answer
112 views

Mouse Control using Native Client

I have a doubt and I still searching how I could do this. Can I make a Native Client application that controls mouse cursor? Like this: I want to control my mouse cursor using my keyboard arrows in a ...
4
votes
1answer
295 views

Google Native Client, sending binary data from NACL side to the frontend Javascript

How do I send binary data,e.g.mp3/mp4 data back to the frontend Javascript side? I know there are two ways of doing it: utilizing the sandbox filesystem provided by NACL and get the url at the ...
0
votes
1answer
85 views

How to write a nacl program that integrates with a jsoncpp naclport

Naclports seems to just provide a 32-bit object files, how do I get my project to link against them? Is there any tutorials on how someone uses jsoncpp in a nacl program?
1
vote
0answers
1k views

Error 127 - recipe for target failed - When compiling Google NaCl examples from Pepper 19?

When I run the make batch file in my Cygwin terminal I get the following output: mparadis@A-082-MPARADI-0 ~/pepper_19/examples$ make make -C dlopen make[1]: Entering directory ...
1
vote
1answer
216 views

Module Load Progress Events in NaCl with manifest_version = 2 and no inline javascript

I upgraded my manifest_version to "2" as per this document, and then was suprised to see chrome burping up errors like: Refused to execute inline script because it violates the following Content ...
1
vote
4answers
563 views

Best way to port c++ game to web

I realize the above question is rather broad so I will narrow it down. I have a simple opengl c++ game engine that lives in a static library (could be converted to a dynamic lib). I have been ...
0
votes
1answer
32 views

PepperMount Write operation fails

Am trying to store files in NACL using PepperMount library. But I've some problem in writing files to the persistent storage. struct stat st; char data1[1000]; for (int i = 0; i < 1000; i++) ...
1
vote
2answers
317 views

Best way to load images for OpenGL in NaCl

What is the best way to load the actual image data from .png or .jpg files for use in OpenGL within Chromes NaCl?? Is there a PPAPI feature that can do this? I didn't think there was. I was ...

1 2 3