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

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

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/app/nibs/AutoFillCreditCardFormView.xib ('k') | chrome/browser/autofill/autofill_text_field_mac.mm » ('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.h
===================================================================
--- chrome/browser/autofill/autofill_text_field_mac.h (revision 42370)
+++ chrome/browser/autofill/autofill_text_field_mac.h (working copy)
@@ -7,11 +7,21 @@
#import <Cocoa/Cocoa.h>
-// Subclass of NSTextField that automatically scrolls containing NSScrollView
-// to visually reveal the text field. When the user tabs between text fields
-// embedded in a scrolling view they'd like the "first responder" to be visible.
-// This class helps achieve that.
+#import "base/scoped_nsobject.h"
+
+#define AUTOFILL_CC_TAG 22
+
+// Subclass of NSTextField with special abilities:
+// - automatically scrolls containing NSScrollView to visually reveal itself
+// on focus
+// - properly obfuscates credit card numbers
+
@interface AutoFillTextField : NSTextField {
+ BOOL isCreditCardField_;
+ BOOL isObfuscated_;
+ BOOL isBeingSelected_;
+
+ scoped_nsobject<NSString> obfuscatedValue_;
}
@end
« no previous file with comments | « chrome/app/nibs/AutoFillCreditCardFormView.xib ('k') | chrome/browser/autofill/autofill_text_field_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698