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

Unified Diff: native_client_sdk/src/libraries/nacl_io/pepper_interface.h

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace 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/libraries/nacl_io/pepper_interface.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/pepper_interface.h b/native_client_sdk/src/libraries/nacl_io/pepper_interface.h
similarity index 84%
rename from native_client_sdk/src/libraries/nacl_mounts/pepper_interface.h
rename to native_client_sdk/src/libraries/nacl_io/pepper_interface.h
index 2c5c004299bff7d3d0a9e18f6c71bfb8bb04f2c7..edeb0367b058cb7d81a29ed7d4a2f04635e2a53e 100644
--- a/native_client_sdk/src/libraries/nacl_mounts/pepper_interface.h
+++ b/native_client_sdk/src/libraries/nacl_io/pepper_interface.h
@@ -2,8 +2,8 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#ifndef LIBRARIES_NACL_MOUNTS_PEPPER_INTERFACE_H_
-#define LIBRARIES_NACL_MOUNTS_PEPPER_INTERFACE_H_
+#ifndef LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_
+#define LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_
#include <ppapi/c/dev/ppb_directory_reader_dev.h>
#include <ppapi/c/pp_completion_callback.h>
@@ -33,12 +33,12 @@
// Forward declare interface classes.
-#include "nacl_mounts/pepper/define_empty_macros.h"
+#include "nacl_io/pepper/define_empty_macros.h"
#undef BEGIN_INTERFACE
#define BEGIN_INTERFACE(BaseClass, PPInterface, InterfaceString) \
class BaseClass;
-#include "nacl_mounts/pepper/all_interfaces.h"
-#include "nacl_mounts/pepper/undef_macros.h"
+#include "nacl_io/pepper/all_interfaces.h"
+#include "nacl_io/pepper/undef_macros.h"
int PPErrorToErrno(int32_t err);
@@ -50,12 +50,12 @@ class PepperInterface {
virtual void ReleaseResource(PP_Resource) = 0;
// Interface getters.
-#include "nacl_mounts/pepper/define_empty_macros.h"
+#include "nacl_io/pepper/define_empty_macros.h"
#undef BEGIN_INTERFACE
#define BEGIN_INTERFACE(BaseClass, PPInterface, InterfaceString) \
virtual BaseClass* Get##BaseClass() = 0;
-#include "nacl_mounts/pepper/all_interfaces.h"
-#include "nacl_mounts/pepper/undef_macros.h"
+#include "nacl_io/pepper/all_interfaces.h"
+#include "nacl_io/pepper/undef_macros.h"
};
// Interface class definitions.
@@ -76,8 +76,8 @@ class PepperInterface {
#define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
Type4) \
virtual ReturnType MethodName(Type0, Type1, Type2, Type3, Type4) = 0;
-#include "nacl_mounts/pepper/all_interfaces.h"
-#include "nacl_mounts/pepper/undef_macros.h"
+#include "nacl_io/pepper/all_interfaces.h"
+#include "nacl_io/pepper/undef_macros.h"
class ScopedResource {
@@ -98,4 +98,4 @@ class ScopedResource {
DISALLOW_COPY_AND_ASSIGN(ScopedResource);
};
-#endif // LIBRARIES_NACL_MOUNTS_PEPPER_INTERFACE_H_
+#endif // LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_

Powered by Google App Engine
This is Rietveld 408576698