Rename GetActiveURL to GetVisibleURL.
GetVisibleURL is a more decriptive name and less ambiguous. Active is an overloaded term and doesn't reflect the fact that the visible URL is in fact not the current security context.
BUG=237908
R=creis
Review URL: https://chromiumcodereview.appspot.com/18546005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212960 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
index 5486eba..25f33ce5 100644
--- a/content/browser/web_contents/web_contents_impl.h
+++ b/content/browser/web_contents/web_contents_impl.h
@@ -314,7 +314,7 @@
virtual bool OnMessageReceived(RenderViewHost* render_view_host,
const IPC::Message& message) OVERRIDE;
virtual const GURL& GetURL() const OVERRIDE;
- virtual const GURL& GetActiveURL() const OVERRIDE;
+ virtual const GURL& GetVisibleURL() const OVERRIDE;
virtual const GURL& GetLastCommittedURL() const OVERRIDE;
virtual WebContents* GetAsWebContents() OVERRIDE;
virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE;