diff options
-rw-r--r-- | content/common/sandbox_mac_unittest_helper.h | 2 | ||||
-rw-r--r-- | mojo/README | 2 | ||||
-rw-r--r-- | native_client_sdk/src/build_tools/make_simple.py | 2 | ||||
-rw-r--r-- | native_client_sdk/src/libraries/nacl_io/nacl_io.h | 2 | ||||
-rwxr-xr-x | native_client_sdk/src/tools/compiler-wrapper.py | 2 | ||||
-rwxr-xr-x | native_client_sdk/src/tools/create_nmf.py | 2 | ||||
-rw-r--r-- | webkit/browser/fileapi/async_file_util.h | 4 | ||||
-rw-r--r-- | webkit/browser/fileapi/file_system_file_util.h | 4 |
8 files changed, 10 insertions, 10 deletions
diff --git a/content/common/sandbox_mac_unittest_helper.h b/content/common/sandbox_mac_unittest_helper.h index 6ad9057..a3c0694 100644 --- a/content/common/sandbox_mac_unittest_helper.h +++ b/content/common/sandbox_mac_unittest_helper.h @@ -60,7 +60,7 @@ class MacSandboxTest : public base::MultiProcessTest { // processes. // // DANGER DANGER DANGER: - // Additional sandbox types defined by the embedder (e.g. the NaCL sandbox) + // Additional sandbox types defined by the embedder (e.g. the NaCl sandbox) // won't be covered by these tests. bool RunTestInAllSandboxTypes(const char* test_name, const char* test_data); diff --git a/mojo/README b/mojo/README index 9eb2abd..96631fb 100644 --- a/mojo/README +++ b/mojo/README @@ -1,3 +1,3 @@ This is an effort to extract a common platform out of Chrome's renderer and plugin processes that can support multiple types of sandboxed content, such as -HTML, Pepper, or NaCL. +HTML, Pepper, or NaCl. diff --git a/native_client_sdk/src/build_tools/make_simple.py b/native_client_sdk/src/build_tools/make_simple.py index 715fa5a..90f8d33 100644 --- a/native_client_sdk/src/build_tools/make_simple.py +++ b/native_client_sdk/src/build_tools/make_simple.py @@ -4,7 +4,7 @@ """This is a simplified Makefile generator for single-target gyp files. It was originally designed for generating readable Makefiles for the -the NaCL examples. +the NaCl examples. """ # pylint: disable=C0301 diff --git a/native_client_sdk/src/libraries/nacl_io/nacl_io.h b/native_client_sdk/src/libraries/nacl_io/nacl_io.h index 4522219..71fb928 100644 --- a/native_client_sdk/src/libraries/nacl_io/nacl_io.h +++ b/native_client_sdk/src/libraries/nacl_io/nacl_io.h @@ -99,7 +99,7 @@ void nacl_io_init_ppapi(PP_Instance instance, * HTTP requests. * * "passthroughfs": A filesystem that passes all requests through to the - * underlying NaCL calls. The primary use of this filesystem + * underlying NaCl calls. The primary use of this filesystem * is to allow reading NMF resources. * source: Unused. * data: Unused. diff --git a/native_client_sdk/src/tools/compiler-wrapper.py b/native_client_sdk/src/tools/compiler-wrapper.py index ef0af64..a2dcb11 100755 --- a/native_client_sdk/src/tools/compiler-wrapper.py +++ b/native_client_sdk/src/tools/compiler-wrapper.py @@ -2,7 +2,7 @@ # Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -"""NaCL gcc wrapper that presents glibc and newlib as a single +"""NaCl gcc wrapper that presents glibc and newlib as a single toolchain. This wraps the newlib and glibc compilers and allows users diff --git a/native_client_sdk/src/tools/create_nmf.py b/native_client_sdk/src/tools/create_nmf.py index d4ead0d9..34351c0 100755 --- a/native_client_sdk/src/tools/create_nmf.py +++ b/native_client_sdk/src/tools/create_nmf.py @@ -124,7 +124,7 @@ def ParseElfHeader(path): elf_magic = '\x7fELF' if e_ident[:4] != elf_magic: - raise Error('Not a valid NaCL executable: %s' % path) + raise Error('Not a valid NaCl executable: %s' % path) e_machine_mapping = { 3 : 'x86-32', diff --git a/webkit/browser/fileapi/async_file_util.h b/webkit/browser/fileapi/async_file_util.h index a5ea621..c1e6d1e 100644 --- a/webkit/browser/fileapi/async_file_util.h +++ b/webkit/browser/fileapi/async_file_util.h @@ -99,7 +99,7 @@ class AsyncFileUtil { // PLATFORM_FILE_ERROR_FILE_EXISTS if the |url| already exists. // // FileSystemOperationImpl::OpenFile calls this. - // This is used only by Pepper/NaCL File API. + // This is used only by Pepper/NaCl File API. // virtual void CreateOrOpen( scoped_ptr<FileSystemOperationContext> context, @@ -185,7 +185,7 @@ class AsyncFileUtil { // create a file unlike 'touch' command on Linux. // // FileSystemOperationImpl::TouchFile calls this. - // This is used only by Pepper/NaCL File API. + // This is used only by Pepper/NaCl File API. // virtual void Touch( scoped_ptr<FileSystemOperationContext> context, diff --git a/webkit/browser/fileapi/file_system_file_util.h b/webkit/browser/fileapi/file_system_file_util.h index a598f83..5a4d730 100644 --- a/webkit/browser/fileapi/file_system_file_util.h +++ b/webkit/browser/fileapi/file_system_file_util.h @@ -59,7 +59,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemFileUtil { // Creates or opens a file with the given flags. // See header comments for AsyncFileUtil::CreateOrOpen() for more details. - // This is used only by Pepper/NaCL File API. + // This is used only by Pepper/NaCl File API. virtual base::PlatformFileError CreateOrOpen( FileSystemOperationContext* context, const FileSystemURL& url, @@ -68,7 +68,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemFileUtil { bool* created) = 0; // Closes the given file handle. - // This is used only for Pepper/NaCL File API. + // This is used only for Pepper/NaCl File API. virtual base::PlatformFileError Close( FileSystemOperationContext* context, base::PlatformFile file) = 0; |