OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_GTK_ACCESSIBLE_WIDGET_HELPER_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_ACCESSIBLE_WIDGET_HELPER_GTK_H_ |
6 #define CHROME_BROWSER_GTK_ACCESSIBLE_WIDGET_HELPER_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_ACCESSIBLE_WIDGET_HELPER_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/singleton.h" | 15 #include "base/singleton.h" |
16 #include "chrome/browser/accessibility_events.h" | 16 #include "chrome/browser/accessibility_events.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 void SetWidgetName(GtkWidget* widget, int string_id); | 56 void SetWidgetName(GtkWidget* widget, int string_id); |
57 | 57 |
58 private: | 58 private: |
59 AccessibilityEventRouterGtk* accessibility_event_router_; | 59 AccessibilityEventRouterGtk* accessibility_event_router_; |
60 Profile* profile_; | 60 Profile* profile_; |
61 GtkWidget* root_widget_; | 61 GtkWidget* root_widget_; |
62 std::string window_title_; | 62 std::string window_title_; |
63 std::set<GtkWidget*> managed_widgets_; | 63 std::set<GtkWidget*> managed_widgets_; |
64 }; | 64 }; |
65 | 65 |
66 #endif // CHROME_BROWSER_GTK_ACCESSIBLE_WIDGET_HELPER_GTK_H_ | 66 #endif // CHROME_BROWSER_UI_GTK_ACCESSIBLE_WIDGET_HELPER_GTK_H_ |
OLD | NEW |