Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "ui/views/controls/button/button.h" | 9 #include "ui/views/controls/button/button.h" |
| 10 #include "ui/views/window/non_client_view.h" | 10 #include "ui/views/window/non_client_view.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 64 HeaderViews* CreateDefaultHeaderView(); | 64 HeaderViews* CreateDefaultHeaderView(); |
| 65 | 65 |
| 66 views::ImageButton* CreateCloseButton(); | 66 views::ImageButton* CreateCloseButton(); |
| 67 | 67 |
| 68 ConstrainedWindowViews* container_; | 68 ConstrainedWindowViews* container_; |
| 69 | 69 |
| 70 views::LayoutManager* layout_; | 70 views::LayoutManager* layout_; |
| 71 | 71 |
| 72 scoped_ptr<HeaderViews> header_views_; | 72 scoped_ptr<HeaderViews> header_views_; |
| 73 | 73 |
| 74 gfx::Insets client_insets_; | |
|
Mike Wittman
2012/10/09 22:55:46
For clarity, make this const.
please use gerrit instead
2012/10/10 19:12:58
Done.
| |
| 75 | |
| 74 DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowFrameSimple); | 76 DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowFrameSimple); |
| 75 }; | 77 }; |
| 76 #endif // CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ | 78 #endif // CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ |
| OLD | NEW |