| Index: chrome/browser/ui/browser_commands.cc
|
| diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc
|
| index cd5676a60f0229724899d18cd08ddd5944bcfaad..ca12cb9d867f3fcae118b822e295cce25801b69b 100644
|
| --- a/chrome/browser/ui/browser_commands.cc
|
| +++ b/chrome/browser/ui/browser_commands.cc
|
| @@ -694,18 +694,6 @@ void ShowChromeToMobileBubble(Browser* browser) {
|
| browser->window()->ShowChromeToMobileBubble();
|
| }
|
|
|
| -void ShareCurrentPage(Browser* browser) {
|
| - const GURL& current_url = chrome::GetActiveWebContents(browser)->GetURL();
|
| - webkit_glue::WebIntentData intent_data(
|
| - ASCIIToUTF16("http://webintents.org/share"),
|
| - ASCIIToUTF16("text/uri-list"),
|
| - UTF8ToUTF16(current_url.spec()));
|
| - scoped_ptr<content::WebIntentsDispatcher> dispatcher(
|
| - content::WebIntentsDispatcher::Create(intent_data));
|
| - static_cast<content::WebContentsDelegate*>(browser)->
|
| - WebIntentDispatch(NULL, dispatcher.release());
|
| -}
|
| -
|
| void Print(Browser* browser) {
|
| printing::PrintViewManager* print_view_manager =
|
| printing::PrintViewManager::FromWebContents(
|
|
|