Lines Matching refs:view
11 // Maints the actual view, key and data.
14 // Returns the Data* for the view/key pair. If |create| is false and |Get|
15 // has not been invoked for the view/key pair, NULL is returned.
16 static void Get(gfx::AcceleratedWidget view,
22 scoped_refptr<Data> new_data(new Data(view, key));
54 Data(gfx::AcceleratedWidget view, const char* key)
55 : view_(view),
80 ViewProp::ViewProp(gfx::AcceleratedWidget view, const char* key, void* data) {
81 Data::Get(view, key, true, &data_);
92 void* ViewProp::GetValue(gfx::AcceleratedWidget view, const char* key) {
94 Data::Get(view, key, false, &data);