Index: chrome/browser/autofill/autofill_dialog_controller_mac.mm |
=================================================================== |
--- chrome/browser/autofill/autofill_dialog_controller_mac.mm (revision 75278) |
+++ chrome/browser/autofill/autofill_dialog_controller_mac.mm (working copy) |
@@ -335,7 +335,7 @@ |
- (void)addressAddDidEnd:(NSWindow*)sheet |
returnCode:(int)returnCode |
contextInfo:(void*)contextInfo { |
- DCHECK(contextInfo == NULL); |
+ DCHECK(!contextInfo); |
if (returnCode) { |
// Create a new address and save it to the |profiles_| list. |
@@ -362,7 +362,7 @@ |
- (void)creditCardAddDidEnd:(NSWindow *)sheet |
Robert Sesek
2011/02/17 17:17:32
nit: while you're here, remove the space between N
KushalP
2011/02/17 17:38:11
Done.
|
returnCode:(int)returnCode |
contextInfo:(void *)contextInfo { |
Robert Sesek
2011/02/17 17:17:32
same here
KushalP
2011/02/17 17:38:11
Done.
|
- DCHECK(contextInfo == NULL); |
+ DCHECK(!contextInfo); |
if (returnCode) { |
// Create a new credit card and save it to the |creditCards_| list. |