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

Unified Diff: native_client_sdk/src/libraries/nacl_io_test/pepper_interface_mock.cc

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/libraries/nacl_io_test/pepper_interface_mock.cc
diff --git a/native_client_sdk/src/libraries/nacl_mounts_test/pepper_interface_mock.cc b/native_client_sdk/src/libraries/nacl_io_test/pepper_interface_mock.cc
similarity index 73%
rename from native_client_sdk/src/libraries/nacl_mounts_test/pepper_interface_mock.cc
rename to native_client_sdk/src/libraries/nacl_io_test/pepper_interface_mock.cc
index ad0af97f84a3ad9b22a033b624d3ba1c659c0b6d..0822028089b35ca2c1b4565a1a922c618410830b 100644
--- a/native_client_sdk/src/libraries/nacl_mounts_test/pepper_interface_mock.cc
+++ b/native_client_sdk/src/libraries/nacl_io_test/pepper_interface_mock.cc
@@ -9,12 +9,12 @@ PepperInterfaceMock::PepperInterfaceMock(PP_Instance instance)
: instance_(instance),
// Initialize interfaces.
-#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) \
BaseClass##interface_(new BaseClass##Mock),
-#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"
// Dummy value so we can ensure that no interface ends the initializer list.
dummy_(0) {
@@ -23,12 +23,12 @@ PepperInterfaceMock::PepperInterfaceMock(PP_Instance instance)
PepperInterfaceMock::~PepperInterfaceMock() {
// Delete interfaces.
-#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) \
delete BaseClass##interface_;
-#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"
}
@@ -37,7 +37,7 @@ PP_Instance PepperInterfaceMock::GetInstance() {
}
// Define Getter functions, constructors, destructors.
-#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) \
BaseClass##Mock* PepperInterfaceMock::Get##BaseClass() { \
@@ -47,5 +47,5 @@ PP_Instance PepperInterfaceMock::GetInstance() {
} \
BaseClass##Mock::~BaseClass##Mock() { \
}
-#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"

Powered by Google App Engine
This is Rietveld 408576698