Searched defs:ViewProp (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/base/
H A Dview_prop.h19 // ViewProp maintains a key/value pair for a particular view. ViewProp is
21 // window manager memory. ViewProp shares similar semantics as SetProp, the
22 // value for a particular view/key pair comes from the last ViewProp created.
23 class UI_BASE_EXPORT ViewProp { class in namespace:ui
25 // Associates data with a view/key pair. If a ViewProp has already been
28 // ViewProp does *not* make a copy of the char*, the pointer is used for
30 ViewProp(gfx::AcceleratedWidget view, const char* key, void* data);
31 ~ViewProp();
46 DISALLOW_COPY_AND_ASSIGN(ViewProp);
[all...]
H A Dview_prop.cc12 class ViewProp::Data : public base::RefCounted<ViewProp::Data> {
78 ViewProp::Data::DataSet* ViewProp::Data::data_set_ = NULL;
80 ViewProp::ViewProp(gfx::AcceleratedWidget view, const char* key, void* data) { function in class:ui::ViewProp
85 ViewProp::~ViewProp() {
87 // assumed that ~ViewProp should behave as though RemoveProp was invoked.
92 void* ViewProp
[all...]

Completed in 91 milliseconds