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

Unified Diff: chrome/browser/chromeos/arc/arc_navigation_throttle.cc

Issue 2368673002: arc: Rename UrlHandlerInfo to IntentHandlerInfo. (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/chromeos/arc/arc_navigation_throttle.cc
diff --git a/chrome/browser/chromeos/arc/arc_navigation_throttle.cc b/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
index 4db4b12a3b23a32ff0badce1e5f90f7602386134..3c03da2e385b9fb668910273d4f83f1a2906bd11 100644
--- a/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
+++ b/chrome/browser/chromeos/arc/arc_navigation_throttle.cc
@@ -134,7 +134,7 @@ ArcNavigationThrottle::HandleRequest() {
// We received the array of app candidates to handle this URL (even the Chrome
// app is included).
void ArcNavigationThrottle::OnAppCandidatesReceived(
- mojo::Array<mojom::UrlHandlerInfoPtr> handlers) {
+ mojo::Array<mojom::IntentHandlerInfoPtr> handlers) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (handlers.empty() ||
(handlers.size() == 1 && ArcIntentHelperBridge::IsIntentHelperPackage(
@@ -196,7 +196,7 @@ void ArcNavigationThrottle::OnAppCandidatesReceived(
}
void ArcNavigationThrottle::OnAppIconsReceived(
- mojo::Array<mojom::UrlHandlerInfoPtr> handlers,
+ mojo::Array<mojom::IntentHandlerInfoPtr> handlers,
std::unique_ptr<ActivityIconLoader::ActivityToIconsMap> icons) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
std::vector<NameAndIcon> app_info;
@@ -218,7 +218,7 @@ void ArcNavigationThrottle::OnAppIconsReceived(
}
void ArcNavigationThrottle::OnIntentPickerClosed(
- mojo::Array<mojom::UrlHandlerInfoPtr> handlers,
+ mojo::Array<mojom::IntentHandlerInfoPtr> handlers,
size_t selected_app_index,
CloseReason close_reason) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
« no previous file with comments | « chrome/browser/chromeos/arc/arc_navigation_throttle.h ('k') | chrome/browser/chromeos/file_manager/arc_file_tasks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698