| Index: chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm
 | 
| diff --git a/chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm b/chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm
 | 
| index f8de658e935ae416f6d1f0ba393dee356f672cd8..61eb57a9809c6ba14f043edb9e37995b0e861a76 100644
 | 
| --- a/chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm
 | 
| +++ b/chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm
 | 
| @@ -165,9 +165,6 @@ void ChromeToMobileBubbleNotificationBridge::OnSendComplete(bool success) {
 | 
|    // Generate the MHTML snapshot now to report its size in the bubble.
 | 
|    service_->GenerateSnapshot(browser_, bridge_->AsWeakPtr());
 | 
|  
 | 
| -  // Request a mobile device list update.
 | 
| -  service_->RequestMobileListUpdate();
 | 
| -
 | 
|    [super showWindow:sender];
 | 
|  }
 | 
|  
 | 
| @@ -187,7 +184,7 @@ void ChromeToMobileBubbleNotificationBridge::OnSendComplete(bool success) {
 | 
|  
 | 
|    const DictionaryValue* mobile = NULL;
 | 
|    if (mobiles->GetDictionary(selected_index, &mobile)) {
 | 
| -    service_->SendToMobile(*mobile,
 | 
| +    service_->SendToMobile(mobile,
 | 
|          ([sendCopy_ state] == NSOnState) ? snapshotPath_ : FilePath(),
 | 
|          browser_, bridge_->AsWeakPtr());
 | 
|    } else {
 | 
| 
 |