Chromium Code Reviews| Index: mojo/system/memory.h |
| diff --git a/mojo/system/memory.h b/mojo/system/memory.h |
| index 963974abf9cb72b66b33fab0b2c33424b87d3d3d..869076f21316b641b1cd5fcab9b4e4d70098bfd1 100644 |
| --- a/mojo/system/memory.h |
| +++ b/mojo/system/memory.h |
| @@ -7,7 +7,7 @@ |
| #include <stddef.h> |
| -#include "mojo/public/system/system_export.h" |
| +#include "mojo/system/system_impl_export.h" |
| namespace mojo { |
| namespace system { |
| @@ -16,7 +16,7 @@ namespace system { |
| // instantiations in the .cc file. This is used by |VerifyUserPointer<T>()| |
| // below, and you should use that instead. |
| template <size_t size> |
| -bool MOJO_SYSTEM_EXPORT VerifyUserPointerForSize(const void* pointer, |
| +bool MOJO_SYSTEM_IMPL_EXPORT VerifyUserPointerForSize(const void* pointer, |
| size_t count); |
|
viettrungluu
2013/12/09 22:04:25
Nit: Fix indentation.
abarth-chromium
2013/12/09 22:48:34
Done.
|
| // Verify that |count * sizeof(T)| bytes can be read from the user |pointer| |