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

Unified Diff: components/arc/intent_helper/arc_intent_helper_bridge.cc

Issue 2202753002: [arc-intents] Properly qualify API-generated page transitions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 years, 5 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
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/intent_helper/arc_intent_helper_bridge.cc
diff --git a/components/arc/intent_helper/arc_intent_helper_bridge.cc b/components/arc/intent_helper/arc_intent_helper_bridge.cc
index 5d4354497fd23cd8bb17766e242ca49170aaf917..6a3fae9f41b3e9fb9a637963b07a07e33dc4466d 100644
--- a/components/arc/intent_helper/arc_intent_helper_bridge.cc
+++ b/components/arc/intent_helper/arc_intent_helper_bridge.cc
@@ -76,7 +76,7 @@ void ArcIntentHelperBridge::OnOpenDownloads() {
void ArcIntentHelperBridge::OnOpenUrl(const mojo::String& url) {
DCHECK(thread_checker_.CalledOnValidThread());
GURL gurl(url.get());
- ash::Shell::GetInstance()->delegate()->OpenUrl(gurl);
+ ash::Shell::GetInstance()->delegate()->OpenUrlFromArc(gurl);
}
void ArcIntentHelperBridge::OpenWallpaperPicker() {
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698