Index: chrome/browser/ui/webui/options/options_ui.cc |
diff --git a/chrome/browser/ui/webui/options/options_ui.cc b/chrome/browser/ui/webui/options/options_ui.cc |
index b2010c88dd54f72319c9eff1f1039df7f77c7a11..3b9ced18a0945d783bba4446765f7f39441a637b 100644 |
--- a/chrome/browser/ui/webui/options/options_ui.cc |
+++ b/chrome/browser/ui/webui/options/options_ui.cc |
@@ -133,6 +133,8 @@ constexpr char kLockScreenHTMLPath[] = "people_page/lock_screen.html"; |
constexpr char kLockScreenJSPath[] = "people_page/lock_screen.js"; |
constexpr char kSetupPinHTMLPath[] = "people_page/setup_pin_dialog.html"; |
constexpr char kSetupPinJSPath[] = "people_page/setup_pin_dialog.js"; |
+constexpr char kFingerprintListHTMLPath[] = "people_page/fingerprint_list.html"; |
+constexpr char kFingerprintListJSPath[] = "people_page/fingerprint_list.js"; |
constexpr char kSettingsRouteHTMLPath[] = "route.html"; |
constexpr char kSettingsRouteJSPath[] = "route.js"; |
constexpr char kSettingsSharedCSSHTMLPath[] = "settings_shared_css.html"; |
@@ -263,8 +265,14 @@ void OptionsUIHTMLSource::CreateDataSourceMap() { |
IDR_OPTIONS_LOCK_STATE_BEHAVIOR_JS; |
path_to_idr_map_[kLockScreenHTMLPath] = IDR_OPTIONS_LOCK_SCREEN_HTML; |
path_to_idr_map_[kLockScreenJSPath] = IDR_OPTIONS_LOCK_SCREEN_JS; |
+ |
+ // These are part of the LockScreen UI. |
stevenjb
2016/12/12 18:35:21
nit: You may as well include the lock screen files
sammiequon
2016/12/13 00:30:40
Done.
|
path_to_idr_map_[kSetupPinHTMLPath] = IDR_OPTIONS_SETUP_PIN_DIALOG_HTML; |
path_to_idr_map_[kSetupPinJSPath] = IDR_OPTIONS_SETUP_PIN_DIALOG_JS; |
+ path_to_idr_map_[kFingerprintListHTMLPath] = |
+ IDR_OPTIONS_FINGERPRINT_LIST_HTML; |
+ path_to_idr_map_[kFingerprintListJSPath] = IDR_OPTIONS_FINGERPRINT_LIST_JS; |
+ |
path_to_idr_map_[kSettingsRouteHTMLPath] = IDR_OPTIONS_ROUTE_HTML; |
path_to_idr_map_[kSettingsRouteJSPath] = IDR_OPTIONS_ROUTE_JS; |
path_to_idr_map_[kSettingsSharedCSSHTMLPath] = IDR_SETTINGS_SHARED_CSS_HTML; |