| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 VIEWS_WIDGET_WIDGET_GTK_H_ | 5 #ifndef VIEWS_WIDGET_WIDGET_GTK_H_ |
| 6 #define VIEWS_WIDGET_WIDGET_GTK_H_ | 6 #define VIEWS_WIDGET_WIDGET_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "gfx/size.h" | |
| 13 #include "ui/base/gtk/gtk_signal.h" | 12 #include "ui/base/gtk/gtk_signal.h" |
| 14 #include "ui/base/x/active_window_watcher_x.h" | 13 #include "ui/base/x/active_window_watcher_x.h" |
| 14 #include "ui/gfx/size.h" |
| 15 #include "views/focus/focus_manager.h" | 15 #include "views/focus/focus_manager.h" |
| 16 #include "views/widget/widget.h" | 16 #include "views/widget/widget.h" |
| 17 | 17 |
| 18 namespace gfx { | 18 namespace gfx { |
| 19 class Rect; | 19 class Rect; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace ui { | 22 namespace ui { |
| 23 class OSExchangeData; | 23 class OSExchangeData; |
| 24 class OSExchangeDataProviderGtk; | 24 class OSExchangeDataProviderGtk; |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 | 450 |
| 451 // Indicates if we should handle the upcoming Alt key release event. | 451 // Indicates if we should handle the upcoming Alt key release event. |
| 452 bool should_handle_menu_key_release_; | 452 bool should_handle_menu_key_release_; |
| 453 | 453 |
| 454 DISALLOW_COPY_AND_ASSIGN(WidgetGtk); | 454 DISALLOW_COPY_AND_ASSIGN(WidgetGtk); |
| 455 }; | 455 }; |
| 456 | 456 |
| 457 } // namespace views | 457 } // namespace views |
| 458 | 458 |
| 459 #endif // VIEWS_WIDGET_WIDGET_GTK_H_ | 459 #endif // VIEWS_WIDGET_WIDGET_GTK_H_ |
| OLD | NEW |