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

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

Issue 2189063002: [arc-intents] Properly qualify API-generated page transitions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix new occurance of an OpenUrl call. 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
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 c18ef79fc0c8e6f2a04bb331d85e05a8cbe09943..162ea38e14ac7f6c651cba01acf824b7f6eaf401 100644
--- a/components/arc/intent_helper/arc_intent_helper_bridge.cc
+++ b/components/arc/intent_helper/arc_intent_helper_bridge.cc
@@ -77,7 +77,7 @@ void ArcIntentHelperBridge::OnOpenDownloads() {
void ArcIntentHelperBridge::OnOpenUrl(const mojo::String& url) {
DCHECK(thread_checker_.CalledOnValidThread());
GURL gurl(url.get());
- ash::WmShell::Get()->delegate()->OpenUrl(gurl);
+ ash::WmShell::Get()->delegate()->OpenUrlFromArc(gurl);
}
void ArcIntentHelperBridge::OpenWallpaperPicker() {

Powered by Google App Engine
This is Rietveld 408576698