OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "chrome/browser/extensions/browser_action_test_util.h" | 5 #include "chrome/browser/extensions/browser_action_test_util.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 | 8 |
9 #include "chrome/browser/browser.h" | 9 #include "chrome/browser/browser.h" |
10 #include "chrome/browser/browser_window.h" | 10 #include "chrome/browser/browser_window.h" |
11 #include "chrome/browser/gtk/extension_popup_gtk.h" | 11 #include "chrome/browser/gtk/extension_popup_gtk.h" |
12 #include "chrome/browser/gtk/extension_view_gtk.h" | 12 #include "chrome/browser/gtk/extension_view_gtk.h" |
13 #include "chrome/browser/gtk/view_id_util.h" | 13 #include "chrome/browser/gtk/view_id_util.h" |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 GtkWidget* GetButton(Browser* browser, int index) { | 17 GtkWidget* GetButton(Browser* browser, int index) { |
18 GtkWidget* button = NULL; | |
19 GtkWidget* toolbar = | 18 GtkWidget* toolbar = |
20 ViewIDUtil::GetWidget(GTK_WIDGET(browser->window()->GetNativeHandle()), | 19 ViewIDUtil::GetWidget(GTK_WIDGET(browser->window()->GetNativeHandle()), |
21 VIEW_ID_BROWSER_ACTION_TOOLBAR); | 20 VIEW_ID_BROWSER_ACTION_TOOLBAR); |
| 21 GtkWidget* button = NULL; |
22 if (toolbar) { | 22 if (toolbar) { |
23 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); | 23 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); |
24 button = static_cast<GtkWidget*>(g_list_nth(children, index)->data); | 24 GtkWidget* alignment = static_cast<GtkWidget*>(g_list_nth(children, index)->
data); |
| 25 button = gtk_bin_get_child(GTK_BIN(alignment)); |
25 g_list_free(children); | 26 g_list_free(children); |
26 } | 27 } |
27 return button; | 28 return button; |
28 } | 29 } |
29 | 30 |
30 } // namespace | 31 } // namespace |
31 | 32 |
32 int BrowserActionTestUtil::NumberOfBrowserActions() { | 33 int BrowserActionTestUtil::NumberOfBrowserActions() { |
33 int count = -1; | 34 int count = -1; |
34 GtkWidget* toolbar = | 35 GtkWidget* toolbar = |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 // static | 82 // static |
82 gfx::Size BrowserActionTestUtil::GetMinPopupSize() { | 83 gfx::Size BrowserActionTestUtil::GetMinPopupSize() { |
83 // On Linux we actually just limit the size of the extension view. | 84 // On Linux we actually just limit the size of the extension view. |
84 return gfx::Size(ExtensionPopupGtk::kMinWidth, ExtensionPopupGtk::kMinHeight); | 85 return gfx::Size(ExtensionPopupGtk::kMinWidth, ExtensionPopupGtk::kMinHeight); |
85 } | 86 } |
86 | 87 |
87 // static | 88 // static |
88 gfx::Size BrowserActionTestUtil::GetMaxPopupSize() { | 89 gfx::Size BrowserActionTestUtil::GetMaxPopupSize() { |
89 return gfx::Size(ExtensionPopupGtk::kMaxWidth, ExtensionPopupGtk::kMaxHeight); | 90 return gfx::Size(ExtensionPopupGtk::kMaxWidth, ExtensionPopupGtk::kMaxHeight); |
90 } | 91 } |
OLD | NEW |