/external/chromium/chrome/browser/ui/gtk/ |
content_setting_bubble_gtk.cc | 217 if (!content.custom_link.empty()) { 219 GtkWidget* custom_link = NULL; local 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) local [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
content_setting_bubble_gtk.cc | 284 if (!content.custom_link.empty()) { 286 GtkWidget* custom_link = NULL; local 288 custom_link = 289 theme_provider->BuildChromeLinkButton(content.custom_link.c_str()); 290 g_signal_connect(custom_link, "clicked", 293 custom_link = theme_provider->BuildLabel(content.custom_link.c_str(), 295 gtk_misc_set_alignment(GTK_MISC(custom_link), 0, 0.5); 297 DCHECK(custom_link); 298 gtk_box_pack_start(GTK_BOX(custom_link_box), custom_link, FALSE, FALSE, 0) local [all...] |
/external/chromium/chrome/browser/ |
content_setting_bubble_model.h | 71 std::string custom_link; member in struct:ContentSettingBubbleModel::BubbleContent 109 bubble_content_.custom_link = link;
|
content_setting_bubble_model_unittest.cc | 38 bubble_content.custom_link.empty()); 60 EXPECT_TRUE(bubble_content.custom_link.empty()); 77 EXPECT_FALSE(bubble_content.custom_link.empty()); 95 EXPECT_FALSE(bubble_content.custom_link.empty());
|
/external/chromium_org/chrome/browser/ui/content_settings/ |
content_setting_bubble_model.h | 86 std::string custom_link; member in struct:ContentSettingBubbleModel::BubbleContent 146 bubble_content_.custom_link = link;
|
content_setting_bubble_model_unittest.cc | 50 bubble_content.custom_link.empty()); 70 EXPECT_TRUE(bubble_content.custom_link.empty()); 89 EXPECT_FALSE(bubble_content.custom_link.empty()); 107 EXPECT_FALSE(bubble_content_2.custom_link.empty()); 147 EXPECT_TRUE(bubble_content.custom_link.empty()); 275 EXPECT_TRUE(bubble_content.custom_link.empty()); 304 EXPECT_TRUE(new_bubble_content.custom_link.empty()); 345 EXPECT_TRUE(bubble_content.custom_link.empty()); 374 EXPECT_TRUE(new_bubble_content.custom_link.empty()); 460 EXPECT_FALSE(bubble_content.custom_link.empty()) [all...] |
/external/chromium/chrome/browser/ui/views/ |
content_setting_bubble_contents.cc | 305 if (!bubble_content.custom_link.empty()) { 306 custom_link_ = new views::Link(UTF8ToWide(bubble_content.custom_link));
|
/external/chromium_org/chrome/browser/ui/views/ |
content_setting_bubble_contents.cc | 356 if (!bubble_content.custom_link.empty()) { 357 custom_link_ = new views::Link(UTF8ToUTF16(bubble_content.custom_link));
|