Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
6k views

What is the coolest Native Client demo available on the web?

Now that Chrome 10 is stable and Native Client can be enabled by going to about:flags, what demos are available on the web for it? I know there are a few basic examples here: ...
4
votes
2answers
342 views

Are there any examples of compiling C# code using Mono so that the exe can run with Google's native client support?

I have found a press release that states that Mono now support compilation for native client. It's unclear whether this is only available from the separate github mono fork, or as part of the standard ...
2
votes
1answer
147 views

What JSON parsing library is good for Google NaCl (c++)?

Since NaCl uses a messaging system between the browser and the module I thought that serializing objects to / from JSON would be a good way to communicate with the javascript. I am using this library: ...
2
votes
3answers
234 views

Can I access the filesystem with Google NaCl?

Since Google NaCl is C++, will I be able to access the file system somehow? That's pretty much needed if I am to create a game or a desktop app.
2
votes
0answers
199 views

How to obtain a 3D context for Google Native Client

Ever since Chromium/Native Client have switched to using PPAPI 2, obtaining a 3D context is broken. I can link and compile my application (which uses OpenGL ES 2 extensively), everything works ... ...
2
votes
2answers
137 views

What are the differences between Microsoft's ActiveX and Google's Native Client?

Microsoft's ActiveX and Google's Native Client both allow you to build web applications that execute native compiled code inside the browser. Besides the fact that they operate on different browsers ...
2
votes
3answers
478 views

Can I run Google's Native Client outside of the browser?

Is it possible to run Google NaCl outside of the browser as a process sandbox?
2
votes
5answers
306 views

Is Google Native Client expected to have Mozilla's and Microsoft's support? [closed]

Personally I think that Google Native Client is an amazing technology, but has no future without the support from major browsers. Is Native Client expected to be standardized, just like HTML? ...
2
votes
1answer
268 views

How will Google Native Client change the way we use Browsers?

I just came across Google Native Client Now, it looks really interesting that they ported Quake to run on a Browser and you can run C++ code on a browser to process things more quickly, but I am ...
2
votes
2answers
249 views

About browser applications: Native code vs Applets with certificates

Hey guys, I've been reading about the new native client support for chrome and I was wondering what are the advantages/disavantages compared to writing Java applet with a certificate? Quick note: A ...
1
vote
1answer
49 views

Chrome Native Client, errors using onKeyDown event

I'm trying to get a very basic Chrome Native Client application running. What I'd like to do is respond to keystrokes, for example by displaying "You pressed X" whenever a user presses a key. I've ...
1
vote
2answers
53 views

Is it possible to software break a Native Client application in GDB and continue execution?

Does anyone have any experience of using the Windows Native Client debugger as described here to debug a Native Client application? I'm trying to fire a software breakpoint or exception in the ...
1
vote
1answer
102 views

How to change the NaCl toolchain?

I am trying to build a native client module that uses the improv lib to receive midi input directly in the web browser. But I have run into problems as the headers of the improv like termio.h, and ...
1
vote
2answers
177 views

Compiling static library for Google Native Client using SCons

I'm working on a few multi platform projects that all depend on common framework. I want to add support for Google Native-Client (NaCl). The way I aproached the problem is first to compile the ...
1
vote
1answer
74 views

HTTP POST request with Google's C++ Native Client

How would one perform a HTTP POST request with Google's C++ Native Client?
1
vote
2answers
814 views

Google chrome, native client support and development

Hey guys, I would like to write a small C++ app and run it on chrome using the native client API. I have a few questions though: 1) I compiled the examples on Ubuntu and ran the code on firefox but ...
0
votes
1answer
27 views

How to interpret ncval's output?

I am trying to port some software to native-client. It uses some inline asm at multiple locations in the code for speed reasons. (Most of them are really simple one-line ones, which are so simple that ...
0
votes
1answer
39 views

Can a Native Client module render HTML generated by C++ code?

I have some data analysis code that processes an input file and outputs HTML and/or SVG. It is C++ and CPU-intensive. I would like to create a browser plugin so that my code can be used without ...
0
votes
3answers
107 views

Ruby in web browser

I'm looking for some solution of next problem: Now i'm developing an Rails app. I want to have possibility to code in Ruby at browser and then execute that code in my Rails app. Are there some ready ...
0
votes
0answers
46 views

What technology can I use for achieving native socket support in Google Chrome apps?

What technology - besides NPAPI - can I use for achieving native socket support in Google Chrome apps? Flash is not an option, as I assume it requires a policy file. What about NaCl and/or Pepper?
0
votes
1answer
20 views

postMessage not declared in this scope error when building nativeClient plugin

When I am trying to build the plugin module using .\scons it is raising me errors. What might cause these types of errors...? Error is postMessage() was not declared in this scope. I am using ...
0
votes
1answer
51 views

How to use scons compile different folder source codes

I have source code and the code need reference other folder library (*.o). I can use makefile to compile other folder source code then generate and link the library file in liunx system. How to ...
0
votes
1answer
74 views

PPAPI Plugin and Chromium OS

I'm looking to use Chromium OS for a specific business application, but I need access to local serial and USB ports. My reading of the Chromium docs says NPAPI plugins are not supported in Chrome OS, ...
0
votes
0answers
43 views

How to set up my ios app in eclipse for testing using native driver

I am trying to use google's native driver for testing my ios app. Could any one please give a quick tutorial on how to do this? Please help me :)
0
votes
1answer
79 views

Porting LibPBC to Native Client?

I want to develop an extension using the PBC library. The amount and quality of documentation on doing this for Firefox's XPCOM was rather obscure, and Native Client seems interesting to experiment ...
0
votes
1answer
385 views

Why are the native client (nacl) demos slow?

On the native client example page there are two examples that graphics. Pi Generator and Conway's Life Both of them use all of my cpu (well, one core which is 50%). With Conway's Life the cpu is ...
0
votes
1answer
207 views

cant do native client demos

I have followed online tutorial, http://code.google.com/chrome/nativeclient/docs/tutorial.html and have Chrome 10 installed on Ubuntu 10.04. However, I am getting this error, when trying examples. ...
0
votes
3answers
262 views

Percent of internet running Google Native Client?

Anyone have numbers on how many machines / % of internet uses have Google Native Client? I'm curious about google NaCL as a platform: it seems to combine the best of the web (just a webpage, ...