summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/aura/window_property.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ui/aura/window_property.h b/ui/aura/window_property.h
index 796aa08..118df4c 100644
--- a/ui/aura/window_property.h
+++ b/ui/aura/window_property.h
@@ -129,14 +129,14 @@ void Window::ClearProperty(const WindowProperty<T>* property) {
}
#define DEFINE_OWNED_WINDOW_PROPERTY_KEY(TYPE, NAME, DEFAULT) \
- namespace { \
- enum { type_must_be_complete = sizeof(TYPE) }; \
- void Deallocator(intptr_t p) { \
+ namespace { \
+ void Deallocator ## NAME (intptr_t p) { \
+ enum { type_must_be_complete = sizeof(TYPE) }; \
delete aura::WindowPropertyCaster<TYPE*>::FromIntptrT(p); \
- } \
- const aura::WindowProperty<TYPE*> NAME ## _Value = \
- {DEFAULT,#NAME,&Deallocator}; \
- } \
+ } \
+ const aura::WindowProperty<TYPE*> NAME ## _Value = \
+ {DEFAULT,#NAME,&Deallocator ## NAME}; \
+ } \
const aura::WindowProperty<TYPE*>* const NAME = & NAME ## _Value;
#endif // UI_AURA_WINDOW_PROPERTY_H_