Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1244)

Unified Diff: chrome/browser/cocoa/location_bar/autocomplete_text_field_cell.mm

Issue 2951012: [Mac] Fix build break with r52223. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/location_bar/autocomplete_text_field_cell.mm
diff --git a/chrome/browser/cocoa/location_bar/autocomplete_text_field_cell.mm b/chrome/browser/cocoa/location_bar/autocomplete_text_field_cell.mm
index ba58bd4504d337874efd75d0c4d46979c94f4d58..269a8978abf85e43a0747ed2aa1493b98ee0dce2 100644
--- a/chrome/browser/cocoa/location_bar/autocomplete_text_field_cell.mm
+++ b/chrome/browser/cocoa/location_bar/autocomplete_text_field_cell.mm
@@ -649,7 +649,7 @@ void CalculatePositionsInFrame(
inMode:NSEventTrackingRunLoopMode
dequeue:YES];
if (!event || [event type] == NSLeftMouseDragged) {
- NSPasteboard* pboard;
+ NSPasteboard* pboard = nil;
if (icon) pboard = [icon view]->GetDragPasteboard();
if (decoration) pboard = decoration->GetDragPasteboard();
DCHECK(pboard);
@@ -663,7 +663,7 @@ void CalculatePositionsInFrame(
if ([controlView isFlipped])
dragPoint.y += NSHeight(decorationRect);
- NSImage* image;
+ NSImage* image = nil;
if (icon) image = [icon view]->GetImage();
if (decoration) image = decoration->GetDragImage();
[controlView dragImage:image
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698