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

Unified Diff: chrome/browser/ui/webui/options/options_ui.cc

Issue 2313103002: Added uma for pin unlock set up. (Closed)
Patch Set: Fixed patch set 6 errors. Created 4 years, 3 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
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 4a0dc71f3e1d218cd6221d0b51ea04343472ffda..c13bcf458fe93c80fe360f8e5d94376448fcaf35 100644
--- a/chrome/browser/ui/webui/options/options_ui.cc
+++ b/chrome/browser/ui/webui/options/options_ui.cc
@@ -124,6 +124,10 @@ constexpr char kPasswordPromptDialogHTMLPath[] =
"people_page/password_prompt_dialog.html";
constexpr char kPasswordPromptDialogJSPath[] =
"people_page/password_prompt_dialog.js";
+constexpr char kLockScreenConstantsHTMLPath[] =
+ "people_page/lock_screen_constants.html";
+constexpr char kLockScreenConstantsJSPath[] =
+ "people_page/lock_screen_constants.js";
constexpr char kLockStateBehaviorHTMLPath[] =
"people_page/lock_state_behavior.html";
constexpr char kLockStateBehaviorJSPath[] =
@@ -257,6 +261,10 @@ void OptionsUIHTMLSource::CreateDataSourceMap() {
IDR_OPTIONS_PASSWORD_PROMPT_DIALOG_HTML;
path_to_idr_map_[kPasswordPromptDialogJSPath] =
IDR_OPTIONS_PASSWORD_PROMPT_DIALOG_JS;
+ path_to_idr_map_[kLockScreenConstantsHTMLPath] =
+ IDR_OPTIONS_LOCK_SCREEN_CONSTANTS_HTML;
+ path_to_idr_map_[kLockScreenConstantsJSPath] =
+ IDR_OPTIONS_LOCK_SCREEN_CONSTANTS_JS;
path_to_idr_map_[kLockStateBehaviorHTMLPath] =
IDR_OPTIONS_LOCK_STATE_BEHAVIOR_HTML;
path_to_idr_map_[kLockStateBehaviorJSPath] =

Powered by Google App Engine
This is Rietveld 408576698