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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts_test/mount_test.cc

Issue 12166002: Cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years, 11 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
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts_test/mount_node_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/libraries/nacl_mounts_test/mount_test.cc
diff --git a/native_client_sdk/src/libraries/nacl_mounts_test/mount_test.cc b/native_client_sdk/src/libraries/nacl_mounts_test/mount_test.cc
index cf89f4be96c0ace447e717c9b206bcdb9d360f7d..34c7ce6aa26bcd97f194b12165bc9a017ae96bac 100644
--- a/native_client_sdk/src/libraries/nacl_mounts_test/mount_test.cc
+++ b/native_client_sdk/src/libraries/nacl_mounts_test/mount_test.cc
@@ -24,6 +24,10 @@ class MountMemMock : public MountMem {
StringMap_t map;
Init(1, map, NULL);
};
+
+ int num_nodes() {
+ return (int) inode_pool_.size();
+ }
};
class MountDevMock : public MountDev {
@@ -32,6 +36,9 @@ class MountDevMock : public MountDev {
StringMap_t map;
Init(1, map, NULL);
}
+ int num_nodes() {
+ return (int) inode_pool_.size();
+ }
};
} // namespace
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts_test/mount_node_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698