| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ | 5 #ifndef EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ |
| 6 #define EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ | 6 #define EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" | 11 #include "mojo/services/navigation/public/interfaces/navigation.mojom.h" |
| 12 #include "ui/views/controls/button/button.h" | 12 #include "ui/views/controls/button/button.h" |
| 13 #include "ui/views/layout/layout_manager.h" | 13 #include "ui/views/layout/layout_manager.h" |
| 14 #include "ui/views/widget/widget_delegate.h" | 14 #include "ui/views/widget/widget_delegate.h" |
| 15 | 15 |
| 16 namespace views { | 16 namespace views { |
| 17 class Label; | 17 class Label; |
| 18 class RadioButton; | 18 class RadioButton; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace mojo { | 21 namespace mojo { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 views::Button* close_last_; | 67 views::Button* close_last_; |
| 68 views::Button* cross_app_; | 68 views::Button* cross_app_; |
| 69 | 69 |
| 70 DISALLOW_COPY_AND_ASSIGN(DebugPanel); | 70 DISALLOW_COPY_AND_ASSIGN(DebugPanel); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // examples | 73 } // examples |
| 74 } // mojo | 74 } // mojo |
| 75 | 75 |
| 76 #endif // EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ | 76 #endif // EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ |
| OLD | NEW |