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

Unified Diff: native_client_sdk/src/examples/hello_nacl_io/example.dsc

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix c file. Created 7 years, 10 months 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/examples/hello_nacl_io/example.dsc
diff --git a/native_client_sdk/src/examples/hello_nacl_mounts/example.dsc b/native_client_sdk/src/examples/hello_nacl_io/example.dsc
similarity index 68%
rename from native_client_sdk/src/examples/hello_nacl_mounts/example.dsc
rename to native_client_sdk/src/examples/hello_nacl_io/example.dsc
index 0ac6dd66f1896bc08ca5432bbfec1063b79eb9af..9064668f8ba2c522d3a091a72303502678f75fda 100644
--- a/native_client_sdk/src/examples/hello_nacl_mounts/example.dsc
+++ b/native_client_sdk/src/examples/hello_nacl_io/example.dsc
@@ -2,17 +2,17 @@
'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'],
'TARGETS': [
{
- 'NAME' : 'hello_nacl_mounts',
+ 'NAME' : 'hello_nacl_io',
'TYPE' : 'main',
'SOURCES' : [
'handlers.c',
'handlers.h',
- 'hello_nacl_mounts.c',
- 'hello_nacl_mounts.h',
+ 'hello_nacl_io.c',
+ 'hello_nacl_io.h',
'queue.c',
'queue.h',
],
- 'LIBS': ['ppapi', 'pthread', 'nacl_mounts']
+ 'LIBS': ['ppapi', 'pthread', 'nacl_io']
}
],
'DATA': [
@@ -20,11 +20,11 @@
'example.js'
],
'DEST': 'examples',
- 'NAME': 'hello_nacl_mounts',
+ 'NAME': 'hello_nacl_io',
'TITLE': 'Hello, Nacl Mounts!',
binji 2013/02/05 21:04:14 Nacl IO
noelallen1 2013/02/05 21:21:47 Done.
'DESC': """
The NaCl Mounts example demonstrates mapping standard FILE such as fopen,
binji 2013/02/05 21:04:14 The NaCl IO
noelallen1 2013/02/05 21:21:47 Done.
-fread, fwrite into mounts by linking in the nacl_mounts library. This allows
+fread, fwrite into mounts by linking in the nacl_io library. This allows
developers to wrap Pepper API such as the File IO API or URL Loader into
standard blocking calls.""",
'FOCUS': 'Using NaCl Mounts.',
binji 2013/02/05 21:04:14 IO
noelallen1 2013/02/05 21:21:47 Done.

Powered by Google App Engine
This is Rietveld 408576698