/external/chromium/chrome/browser/tab_contents/ |
tab_contents_view_gtk.h | 99 // Used to adjust the size of its children when the size of |expanded_| is 104 // Used to propagate the size change of |expanded_| to our RWHV to resize the 112 // Contains |expanded_| as its GtkBin member. 117 GtkWidget* expanded_; member in class:TabContentsViewGtk
|
tab_contents_view_gtk.cc | 90 expanded_(gtk_expanded_container_new()), 92 gtk_widget_set_name(expanded_, "chrome-tab-contents-view"); 93 g_signal_connect(expanded_, "size-allocate", 95 g_signal_connect(expanded_, "child-size-request", 100 gtk_container_add(GTK_CONTAINER(floating_.get()), expanded_); local 101 gtk_widget_show(expanded_); 190 if (expanded_->window) 191 gdk_window_get_origin(expanded_->window, &x, &y); 192 out->SetRect(x + expanded_->allocation.x, y + expanded_->allocation.y [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
tab_contents_container_gtk.h | 97 // GtkBin and a GtkFixed, |floating_| has |expanded_| as its one "real" child, 102 // We insert and remove TabContents GtkWidgets into this expanded_. This 106 GtkWidget* expanded_; member in class:TabContentsContainerGtk
|
gtk_expanded_container_unittest.cc | 13 expanded_(gtk_expanded_container_new()) { 15 gtk_container_add(GTK_CONTAINER(window_), expanded_); local 22 GList* children = gtk_container_get_children(GTK_CONTAINER(expanded_)); 36 gtk_container_child_get_property(GTK_CONTAINER(expanded_), widget, "x", &x); 43 gtk_container_child_get_property(GTK_CONTAINER(expanded_), widget, "y", &y); 49 GtkWidget* expanded_; member in class:GtkExpandedContainerTest 55 gtk_container_add(GTK_CONTAINER(expanded_), child1); 58 gtk_container_add(GTK_CONTAINER(expanded_), child2); 62 gtk_container_remove(GTK_CONTAINER(expanded_), child1); 66 gtk_container_remove(GTK_CONTAINER(expanded_), child2) [all...] |
tab_contents_container_gtk.cc | 34 // |+- GtkExpandedContainer |expanded_| -----------------------------+| 48 expanded_ = gtk_expanded_container_new(); 49 gtk_container_add(GTK_CONTAINER(floating_.get()), expanded_); local 58 gtk_widget_show(expanded_); 112 gtk_container_remove(GTK_CONTAINER(expanded_), preview_widget); 134 if (widget->parent != expanded_) 135 gtk_container_add(GTK_CONTAINER(expanded_), widget); 168 DCHECK_EQ(widget->parent, expanded_); 169 gtk_container_remove(GTK_CONTAINER(expanded_), widget);
|
/external/chromium/chrome/browser/chromeos/frame/ |
panel_controller.h | 148 bool expanded_; member in class:chromeos::PanelController
|
/external/chromium/net/base/ |
sdch_filter_unittest.cc | 62 expanded_(kTestData, sizeof(kTestData) - 1), 71 const std::string expanded_; // Desired final, decompressed data. member in class:net::SdchFilterTest 434 EXPECT_EQ(output, expanded_); 444 EXPECT_EQ(output, expanded_); 680 EXPECT_EQ(output, expanded_); 732 EXPECT_EQ(output, expanded_); 743 EXPECT_EQ(output, expanded_); [all...] |