| Index: ui/views/window/native_frame_view.h
|
| diff --git a/ui/views/window/native_frame_view.h b/ui/views/window/native_frame_view.h
|
| index 378e354bf791824f05aebbeb02681de3e46cebe5..09ecd95070312ed60d012348b7422f8c943e6819 100644
|
| --- a/ui/views/window/native_frame_view.h
|
| +++ b/ui/views/window/native_frame_view.h
|
| @@ -13,6 +13,8 @@ class Widget;
|
|
|
| class VIEWS_EXPORT NativeFrameView : public NonClientFrameView {
|
| public:
|
| + static const char kViewClassName[];
|
| +
|
| explicit NativeFrameView(Widget* frame);
|
| virtual ~NativeFrameView();
|
|
|
| @@ -31,6 +33,7 @@ class VIEWS_EXPORT NativeFrameView : public NonClientFrameView {
|
| virtual gfx::Size GetPreferredSize() OVERRIDE;
|
| virtual gfx::Size GetMinimumSize() OVERRIDE;
|
| virtual gfx::Size GetMaximumSize() OVERRIDE;
|
| + virtual const char* GetClassName() const OVERRIDE;
|
|
|
| private:
|
| // Our containing frame.
|
|
|