| Index: ui/aura/window.h
|
| ===================================================================
|
| --- ui/aura/window.h (revision 110305)
|
| +++ ui/aura/window.h (working copy)
|
| @@ -256,6 +256,7 @@
|
| // Please see the description of |prop_map_| for more details.
|
| void SetProperty(const char* name, void* value);
|
| void SetIntProperty(const char* name, int value);
|
| + void SetBoolProperty(const char* name, bool value);
|
|
|
| // Returns the window property for given |name|. Returns NULL or 0 if
|
| // the property does not exist.
|
| @@ -264,6 +265,7 @@
|
| // change it to -1.
|
| void* GetProperty(const char* name) const;
|
| int GetIntProperty(const char* name) const;
|
| + bool GetBoolProperty(const char* name) const;
|
|
|
| protected:
|
| // Returns the desktop or NULL if we aren't yet attached to a desktop.
|
|
|