Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Side by Side Diff: chrome/browser/extensions/browser_action_test_util_gtk.cc

Issue 3064039: GTK: unbreak extension badges. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix browser tests Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/gtk/browser_actions_toolbar_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/gtk/browser_actions_toolbar_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698