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

Unified Diff: chrome/browser/ui/views/settings_api_bubble_helper_views.cc

Issue 1877143002: Convert ToolbarActionsBarBubbleViews to BubbleDialogDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/settings_api_bubble_helper_views.cc
diff --git a/chrome/browser/ui/views/settings_api_bubble_helper_views.cc b/chrome/browser/ui/views/settings_api_bubble_helper_views.cc
index 14857891a2a02e614bda9b2d42bb81cfe2549f53..6bda4f619537e1fabdce62fc2ea5f6d890701f57 100644
--- a/chrome/browser/ui/views/settings_api_bubble_helper_views.cc
+++ b/chrome/browser/ui/views/settings_api_bubble_helper_views.cc
@@ -45,7 +45,7 @@ void ShowSettingsApiBubble(SettingsApiOverrideType type,
new ExtensionMessageBubbleBridge(
std::move(settings_api_bubble))));
bubble->set_arrow(arrow);
- views::BubbleDelegateView::CreateBubble(bubble);
+ views::BubbleDialogDelegateView::CreateBubble(bubble);
bubble->Show();
}
@@ -122,7 +122,7 @@ void MaybeShowExtensionControlledNewTabPage(
std::unique_ptr<ToolbarActionsBarBubbleDelegate>(
new ExtensionMessageBubbleBridge(std::move(ntp_overridden_bubble))));
bubble->set_arrow(views::BubbleBorder::TOP_RIGHT);
- views::BubbleDelegateView::CreateBubble(bubble);
+ views::BubbleDialogDelegateView::CreateBubble(bubble);
bubble->Show();
}

Powered by Google App Engine
This is Rietveld 408576698