OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/system/memory.h" | 5 #include "mojo/edk/system/memory.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 namespace system { | 13 namespace system { |
14 namespace internal { | 14 namespace internal { |
15 | 15 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 (!!pointer && reinterpret_cast<uintptr_t>(pointer) % 8 == 0)); | 80 (!!pointer && reinterpret_cast<uintptr_t>(pointer) % 8 == 0)); |
81 } | 81 } |
82 #else | 82 #else |
83 template void MOJO_SYSTEM_IMPL_EXPORT | 83 template void MOJO_SYSTEM_IMPL_EXPORT |
84 CheckUserPointerWithSize<8>(const void*, size_t); | 84 CheckUserPointerWithSize<8>(const void*, size_t); |
85 #endif | 85 #endif |
86 | 86 |
87 } // namespace internal | 87 } // namespace internal |
88 } // namespace system | 88 } // namespace system |
89 } // namespace mojo | 89 } // namespace mojo |
OLD | NEW |