| 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 4b088eaf91d17e25f35077f874f8040580a82ff8..f8de658e935ae416f6d1f0ba393dee356f672cd8 100644
|
| --- a/chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/chrome_to_mobile_bubble_controller.mm
|
| @@ -104,7 +104,7 @@ void ChromeToMobileBubbleNotificationBridge::OnSendComplete(bool success) {
|
| NSWindow* window = [self window];
|
|
|
| const ListValue* mobiles = service_->GetMobiles();
|
| - DictionaryValue* mobile = NULL;
|
| + const DictionaryValue* mobile = NULL;
|
| string16 name;
|
|
|
| if (mobiles->GetSize() == 1) {
|
| @@ -185,7 +185,7 @@ void ChromeToMobileBubbleNotificationBridge::OnSendComplete(bool success) {
|
| // NSMatrix selectedRow is -1 by default (in the single mobile device case).
|
| const int selected_index = std::max<int>([mobileRadioGroup_ selectedRow], 0);
|
|
|
| - DictionaryValue* mobile = NULL;
|
| + const DictionaryValue* mobile = NULL;
|
| if (mobiles->GetDictionary(selected_index, &mobile)) {
|
| service_->SendToMobile(*mobile,
|
| ([sendCopy_ state] == NSOnState) ? snapshotPath_ : FilePath(),
|
|
|