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

Side by Side Diff: chrome/browser/android/resource_id.h

Issue 887153003: Add CVC icon to card unmasking prompt (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ems Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_ANDROID_RESOURCE_ID_H_ 5 #ifndef CHROME_BROWSER_ANDROID_RESOURCE_ID_H_
6 #define CHROME_BROWSER_ANDROID_RESOURCE_ID_H_ 6 #define CHROME_BROWSER_ANDROID_RESOURCE_ID_H_
7 7
8 // This file maps Chromium resource IDs to Android resource IDs. 8 // This file maps Chromium resource IDs to Android resource IDs.
9 #ifndef DEFINE_RESOURCE_ID 9 #ifndef DEFINE_RESOURCE_ID
10 #error "DEFINE_RESOURCE_ID should be defined before including this file" 10 #error "DEFINE_RESOURCE_ID should be defined before including this file"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 DEFINE_RESOURCE_ID(IDR_PAGEINFO_WARNING_MINOR,\ 44 DEFINE_RESOURCE_ID(IDR_PAGEINFO_WARNING_MINOR,\
45 R.drawable.pageinfo_warning_minor) 45 R.drawable.pageinfo_warning_minor)
46 46
47 // Autofill popup images. 47 // Autofill popup images.
48 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_AMEX, R.drawable.amex_card) 48 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_AMEX, R.drawable.amex_card)
49 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_DISCOVER, R.drawable.discover_card) 49 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_DISCOVER, R.drawable.discover_card)
50 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_GENERIC, R.drawable.generic_card) 50 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_GENERIC, R.drawable.generic_card)
51 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_MASTERCARD, R.drawable.mc_card) 51 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_MASTERCARD, R.drawable.mc_card)
52 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_VISA, R.drawable.visa_card) 52 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_VISA, R.drawable.visa_card)
53 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_SCAN_NEW, android.R.drawable.ic_menu_camera) 53 DEFINE_RESOURCE_ID(IDR_AUTOFILL_CC_SCAN_NEW, android.R.drawable.ic_menu_camera)
54 DEFINE_RESOURCE_ID(IDR_CREDIT_CARD_CVC_HINT, R.drawable.cvc_icon)
55 DEFINE_RESOURCE_ID(IDR_CREDIT_CARD_CVC_HINT_AMEX, R.drawable.cvc_icon_amex)
54 56
55 #endif // CHROME_BROWSER_ANDROID_RESOURCE_ID_H_ 57 #endif // CHROME_BROWSER_ANDROID_RESOURCE_ID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698