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

Unified Diff: chrome/browser/autofill/autofill_text_field_mac.mm

Issue 1219009: Adds obscuring to credit card numbers when displayed.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | « chrome/browser/autofill/autofill_text_field_mac.h ('k') | chrome/browser/autofill/credit_card.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_text_field_mac.mm
===================================================================
--- chrome/browser/autofill/autofill_text_field_mac.mm (revision 42370)
+++ chrome/browser/autofill/autofill_text_field_mac.mm (working copy)
@@ -4,8 +4,16 @@
#import "chrome/browser/autofill/autofill_text_field_mac.h"
+#include "base/sys_string_conversions.h"
+#include "chrome/browser/autofill/credit_card.h"
+
@implementation AutoFillTextField
+- (void)awakeFromNib {
+ if ([self tag] == AUTOFILL_CC_TAG)
+ isCreditCardField_ = YES;
+}
+
// Override NSResponder method for when the text field may gain focus. We
// call |scrollRectToVisible| to ensure that this text field is visible within
// the scrolling area.
@@ -20,4 +28,56 @@
return becoming;
}
+- (void)setObjectValue:(id)object {
+ if (isCreditCardField_ && [object isKindOfClass:[NSString class]]) {
+ // Obfuscate the number.
+ NSString* string = object;
+ CreditCard card;
+ card.SetInfo(AutoFillType(CREDIT_CARD_NUMBER),
+ base::SysNSStringToUTF16(string));
+ NSString* starredString = base::SysUTF16ToNSString(card.ObfuscatedNumber());
+
+ [super setObjectValue:starredString];
+ isObfuscated_ = YES;
+ obfuscatedValue_.reset([string copy]);
+ } else {
+ [super setObjectValue:object];
+ }
+}
+
+- (id)objectValue {
+ if (isObfuscated_) {
+ // This should not happen. This field is bound, and its value will only be
+ // fetched if it is changed, and since we force selection, that should clear
+ // the obfuscation. Nevertheless, we'll be paranoid here since we don't want
+ // the obfuscating ***s to end up in the database.
+ return obfuscatedValue_.get();
+ } else {
+ return [super objectValue];
+ }
+}
+
+// |self| is automatically set to be the delegate of the field editor; this
+// method is called by the field editor.
+- (void)textViewDidChangeSelection:(NSNotification *)notification {
+ if (isCreditCardField_ && !isBeingSelected_ && isObfuscated_) {
+ // Can't edit obfuscated credit card info; force a select-all in that case.
+ isBeingSelected_ = YES;
+ NSText* editor = [notification object];
+ [editor selectAll:self];
+ isBeingSelected_ = NO;
+ }
+}
+
+// Docs aren't clear, but this is called on the first keypress, not when the
+// field takes focus.
+- (BOOL)textShouldBeginEditing:(NSText*)textObject {
+ BOOL should = [super textShouldBeginEditing:textObject];
+ // On editing, since everything is selected, the field is now clear.
+ isObfuscated_ = !should;
+ if (!isObfuscated_)
+ obfuscatedValue_.reset();
+ return should;
+}
+
@end
« no previous file with comments | « chrome/browser/autofill/autofill_text_field_mac.h ('k') | chrome/browser/autofill/credit_card.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698