Shorten the namespace and re-normalize include guards.
Change-Id: I93af4c1f19edf31098abd20ded1fcca6c5d83854
diff --git a/src/memory_region.h b/src/memory_region.h
index da79fbd..f5382cd 100644
--- a/src/memory_region.h
+++ b/src/memory_region.h
@@ -9,8 +9,7 @@
#include "src/macros.h"
#include "src/memory_region.h"
-namespace android {
-namespace runtime {
+namespace art {
// Memory regions are useful for accessing memory with bounds check in
// debug mode. They can be safely passed by value and do not assume ownership
@@ -81,6 +80,6 @@
DISALLOW_COPY_AND_ASSIGN(MemoryRegion);
};
-} } // namespace android::runtime
+} // namespace art
#endif // ART_MEMORY_REGION_H_