Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

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

Issue 790623003: Restructure public side of view_manager service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: BUILD.gn file reorderings Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
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_PUBLIC_CPP_VIEW_MANAGER_VIEW_PROPERTY_H_ 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_PROPERTY_H_
6 #define MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_PROPERTY_H_ 6 #define MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_PROPERTY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.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 "mojo/services/public/cpp/view_manager/view_property.h" 15 // #include "mojo/services/view_manager/public/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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 void Deallocator##NAME(int64 p) { \ 130 void Deallocator##NAME(int64 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, \
135 #NAME, \ 135 #NAME, \
136 &Deallocator##NAME}; \ 136 &Deallocator##NAME}; \
137 } \ 137 } \
138 const mojo::ViewProperty<TYPE*>* const NAME = &NAME##_Value; 138 const mojo::ViewProperty<TYPE*>* const NAME = &NAME##_Value;
139 139
140 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_PROPERTY_H_ 140 #endif // MOJO_SERVICES_VIEW_MANAGER_PUBLIC_CPP_VIEW_PROPERTY_H_
OLDNEW
« no previous file with comments | « mojo/services/view_manager/public/cpp/view_observer.h ('k') | mojo/services/view_manager/public/cpp/view_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698