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

Unified Diff: content/public/common/content_client.cc

Issue 1703163002: Remove dependency on GURL from content/common/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/common/content_client.cc
diff --git a/content/public/common/content_client.cc b/content/public/common/content_client.cc
index e7f50c8df98375864e06dda79d52b8cd9943c2f7..c439f632d389736bcf98e8ab05fd39cc7b571ee1 100644
--- a/content/public/common/content_client.cc
+++ b/content/public/common/content_client.cc
@@ -68,6 +68,10 @@ ContentClient::ContentClient()
ContentClient::~ContentClient() {
}
+void ContentClient::SetActiveURL(const std::string& url) {
+ SetActiveURL(GURL(url));
+}
+
bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* message) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698