| Index: content/browser/content_browser_client.cc
|
| ===================================================================
|
| --- content/browser/content_browser_client.cc (revision 80243)
|
| +++ content/browser/content_browser_client.cc (working copy)
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/memory/singleton.h"
|
| #include "content/browser/webui/empty_web_ui_factory.h"
|
| +#include "googleurl/src/gurl.h"
|
|
|
| namespace content {
|
|
|
| @@ -14,4 +15,8 @@
|
| return EmptyWebUIFactory::Get();
|
| }
|
|
|
| +GURL ContentBrowserClient::GetEffectiveURL(Profile* profile, const GURL& url) {
|
| + return url;
|
| +}
|
| +
|
| } // namespace content
|
|
|