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

Unified Diff: chrome/browser/ui/browser_dialogs.h

Issue 2335313003: Refactor IntentPickerBubbleView::ShowBubble() (Closed)
Patch Set: Created 4 years, 3 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/browser_dialogs.h
diff --git a/chrome/browser/ui/browser_dialogs.h b/chrome/browser/ui/browser_dialogs.h
index ba3eb2e05a0d22f3c9b1f7c15f7ba72a07914b9f..ee266a5ad821ba5f79efcb2b479a5ed0cae0b555 100644
--- a/chrome/browser/ui/browser_dialogs.h
+++ b/chrome/browser/ui/browser_dialogs.h
@@ -175,11 +175,11 @@ class ContentSettingBubbleViewsBridge {
#if defined(OS_CHROMEOS)
// Return a pointer to the IntentPickerBubbleView::ShowBubble method.
-using BubbleShowPtr =
-void(*)(content::NavigationHandle*,
- const std::vector<std::pair<std::basic_string<char>, gfx::Image> >&,
- const base::Callback<void(size_t,
- arc::ArcNavigationThrottle::CloseReason)>&);
+using BubbleShowPtr = void (*)(
sky 2016/09/14 18:08:15 If you didn't, please run git cl format.
Yusuke Sato 2016/09/14 18:15:54 Actually, the current (my CL's) format is by git c
+ content::WebContents*,
+ const std::vector<std::pair<std::basic_string<char>, gfx::Image>>&,
+ const base::Callback<void(size_t,
+ arc::ArcNavigationThrottle::CloseReason)>&);
BubbleShowPtr ShowIntentPickerBubble();

Powered by Google App Engine
This is Rietveld 408576698