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

Unified Diff: chrome/browser/prerender/prerender_test_utils.cc

Issue 2538353002: fix external protocol handling for OOPIFs (Closed)
Patch Set: rebase Created 4 years 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/prerender/prerender_test_utils.cc
diff --git a/chrome/browser/prerender/prerender_test_utils.cc b/chrome/browser/prerender/prerender_test_utils.cc
index 84957e2d5de5a9e173b6b90b12120f7b7bb83f22..9f018ad93a394ea134e08b18479884f25afad8ae 100644
--- a/chrome/browser/prerender/prerender_test_utils.cc
+++ b/chrome/browser/prerender/prerender_test_utils.cc
@@ -208,7 +208,11 @@ class NeverRunsExternalProtocolHandlerDelegate
NOTREACHED();
}
- void LaunchUrlWithoutSecurityCheck(const GURL& url) override { NOTREACHED(); }
+ void LaunchUrlWithoutSecurityCheck(
+ const GURL& url,
+ content::WebContents* web_contents) override {
+ NOTREACHED();
+ }
void FinishedProcessingCheck() override { NOTREACHED(); }
};

Powered by Google App Engine
This is Rietveld 408576698