Chromium Code Reviews

Side by Side Diff: mojo/services/view_manager/cpp/view_property.h

Issue 1391243003: Move //mojo/services/X/public/... to //mojo/services/X/... (part 4). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_3-x-no_public_2-x-no_public_1
Patch Set: copyright header Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_PROPERTY_H_ 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_CPP_VIEW_PROPERTY_H_
6 #define MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_PROPERTY_H_ 6 #define MOJO_SERVICES_VIEW_MANAGER_CPP_VIEW_PROPERTY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 // This header should be included by code that defines ViewProperties. It 10 // This header should be included by code that defines ViewProperties. It
11 // should not be included by code that only gets and sets ViewProperties. 11 // should not be included by code that only gets and sets ViewProperties.
12 // 12 //
13 // To define a new ViewProperty: 13 // To define a new ViewProperty:
14 // 14 //
15 // #include "view_manager/public/cpp/view_property.h" 15 // #include "view_manager/cpp/view_property.h"
16 // 16 //
17 // DECLARE_EXPORTED_VIEW_PROPERTY_TYPE(FOO_EXPORT, MyType); 17 // DECLARE_EXPORTED_VIEW_PROPERTY_TYPE(FOO_EXPORT, MyType);
18 // namespace foo { 18 // namespace foo {
19 // // Use this to define an exported property that is premitive, 19 // // Use this to define an exported property that is premitive,
20 // // or a pointer you don't want automatically deleted. 20 // // or a pointer you don't want automatically deleted.
21 // DEFINE_VIEW_PROPERTY_KEY(MyType, kMyKey, MyDefault); 21 // DEFINE_VIEW_PROPERTY_KEY(MyType, kMyKey, MyDefault);
22 // 22 //
23 // // Use this to define an exported property whose value is a heap 23 // // Use this to define an exported property whose value is a heap
24 // // allocated object, and has to be owned and freed by the view. 24 // // allocated object, and has to be owned and freed by the view.
25 // DEFINE_OWNED_VIEW_PROPERTY_KEY(gfx::Rect, kRestoreBoundsKey, nullptr); 25 // DEFINE_OWNED_VIEW_PROPERTY_KEY(gfx::Rect, kRestoreBoundsKey, nullptr);
(...skipping 98 matching lines...)
124 const mojo::ViewProperty<TYPE> NAME##_Value = {DEFAULT, #NAME, nullptr}; \ 124 const mojo::ViewProperty<TYPE> NAME##_Value = {DEFAULT, #NAME, nullptr}; \
125 const mojo::ViewProperty<TYPE>* const NAME = &NAME##_Value; \ 125 const mojo::ViewProperty<TYPE>* const NAME = &NAME##_Value; \
126 } 126 }
127 127
128 #define DEFINE_OWNED_VIEW_PROPERTY_KEY(TYPE, NAME, DEFAULT) \ 128 #define DEFINE_OWNED_VIEW_PROPERTY_KEY(TYPE, NAME, DEFAULT) \
129 namespace { \ 129 namespace { \
130 void Deallocator##NAME(int64_t p) { \ 130 void Deallocator##NAME(int64_t p) { \
131 enum { type_must_be_complete = sizeof(TYPE) }; \ 131 enum { type_must_be_complete = sizeof(TYPE) }; \
132 delete mojo::ViewPropertyCaster<TYPE*>::FromInt64(p); \ 132 delete mojo::ViewPropertyCaster<TYPE*>::FromInt64(p); \
133 } \ 133 } \
134 const mojo::ViewProperty<TYPE*> NAME##_Value = {DEFAULT, \ 134 const mojo::ViewProperty<TYPE*> NAME##_Value = {DEFAULT, #NAME, \
135 #NAME, \
136 &Deallocator##NAME}; \ 135 &Deallocator##NAME}; \
137 } \ 136 } \
138 const mojo::ViewProperty<TYPE*>* const NAME = &NAME##_Value; 137 const mojo::ViewProperty<TYPE*>* const NAME = &NAME##_Value;
139 138
140 #endif // MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_PROPERTY_H_ 139 #endif // MOJO_SERVICES_VIEW_MANAGER_CPP_VIEW_PROPERTY_H_
OLDNEW
« no previous file with comments | « mojo/services/view_manager/cpp/view_observer.h ('k') | mojo/services/view_manager/cpp/view_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine