| 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 MOJO_EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ | 5 #ifndef MOJO_EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ |
| 6 #define MOJO_EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ | 6 #define MOJO_EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "mojo/public/interfaces/service_provider/service_provider.mojom.h" | |
| 11 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" | 10 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" |
| 12 #include "ui/views/controls/button/button.h" | 11 #include "ui/views/controls/button/button.h" |
| 13 #include "ui/views/layout/layout_manager.h" | 12 #include "ui/views/layout/layout_manager.h" |
| 14 #include "ui/views/widget/widget_delegate.h" | 13 #include "ui/views/widget/widget_delegate.h" |
| 15 | 14 |
| 16 namespace views { | 15 namespace views { |
| 17 class Label; | 16 class Label; |
| 18 class RadioButton; | 17 class RadioButton; |
| 19 } | 18 } |
| 20 | 19 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 views::Button* close_last_; | 71 views::Button* close_last_; |
| 73 views::Button* cross_app_; | 72 views::Button* cross_app_; |
| 74 | 73 |
| 75 DISALLOW_COPY_AND_ASSIGN(DebugPanel); | 74 DISALLOW_COPY_AND_ASSIGN(DebugPanel); |
| 76 }; | 75 }; |
| 77 | 76 |
| 78 } // examples | 77 } // examples |
| 79 } // mojo | 78 } // mojo |
| 80 | 79 |
| 81 #endif // MOJO_EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ | 80 #endif // MOJO_EXAMPLES_WINDOW_MANAGER_DEBUG_PANEL_H_ |
| OLD | NEW |