Home | History | Annotate | Download | only in gtk

Lines Matching defs:custom_link

217   if (!content.custom_link.empty()) {
219 GtkWidget* custom_link = NULL;
221 custom_link = gtk_chrome_link_button_new(content.custom_link.c_str());
222 g_signal_connect(custom_link, "clicked",
225 custom_link = gtk_label_new(content.custom_link.c_str());
226 gtk_misc_set_alignment(GTK_MISC(custom_link), 0, 0.5);
228 DCHECK(custom_link);
229 gtk_box_pack_start(GTK_BOX(custom_link_box), custom_link, FALSE, FALSE, 0);