| Index: views/window/non_client_view.h
|
| ===================================================================
|
| --- views/window/non_client_view.h (revision 22523)
|
| +++ views/window/non_client_view.h (working copy)
|
| @@ -198,6 +198,10 @@
|
| virtual bool GetAccessibleName(std::wstring* name);
|
| virtual void SetAccessibleName(const std::wstring& name);
|
|
|
| + // Call if the nonclientview is in an app or popup and we are in Vista, to
|
| + // force usage of glass frame.
|
| + void ForceAeroGlassFrame();
|
| +
|
| protected:
|
| // NonClientView, View overrides:
|
| virtual void ViewHierarchyChanged(bool is_add, View* parent, View* child);
|
| @@ -220,6 +224,10 @@
|
| // The accessible name of this view.
|
| std::wstring accessible_name_;
|
|
|
| + // True if the nonclientview is in an app or popup and we are in Vista. Used
|
| + // to force usage of glass frame.
|
| + bool force_aero_glass_frame_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(NonClientView);
|
| };
|
|
|
|
|