HomeSort by relevance Sort by last modified time
    Searched defs:ViewProp (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/base/
view_prop.h 19 // 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_EXPORT ViewProp {
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...]
view_prop.cc 12 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) {
85 ViewProp::~ViewProp() {
87 // assumed that ~ViewProp should behave as though RemoveProp was invoked.
92 void* ViewProp::GetValue(gfx::AcceleratedWidget view, const char* key)
    [all...]

Completed in 61 milliseconds