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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.cc

Issue 27408004: <webview>: Resolve relative paths as chrome-extension: URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't update src attribute with resolved URL. Created 7 years, 2 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: content/public/browser/browser_plugin_guest_delegate.cc
diff --git a/content/public/browser/browser_plugin_guest_delegate.cc b/content/public/browser/browser_plugin_guest_delegate.cc
index c80877325616cab2a28e6c9c1c0eb175a0d1b4a2..52577612aa1f32a2f9c751789d07b1e8ac2dbd6c 100644
--- a/content/public/browser/browser_plugin_guest_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_delegate.cc
@@ -27,4 +27,8 @@ bool BrowserPluginGuestDelegate::RequestPermission(
return false;
}
+GURL BrowserPluginGuestDelegate::ResolveURL(const std::string& src) {
+ return GURL(src);
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698