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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc

Issue 2915053002: Replace profile statistics preference count with AutofillCounter (Closed)
Patch Set: Change 'Browsing History' to 'Browsing history' Created 3 years, 6 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" 5 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <vector> 10 #include <vector>
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 IDS_LOGIN_PUBLIC_ACCOUNT_MONITORING_INFO_ITEM_3); 526 IDS_LOGIN_PUBLIC_ACCOUNT_MONITORING_INFO_ITEM_3);
527 builder->Add("publicAccountMonitoringInfoItem4", 527 builder->Add("publicAccountMonitoringInfoItem4",
528 IDS_LOGIN_PUBLIC_ACCOUNT_MONITORING_INFO_ITEM_4); 528 IDS_LOGIN_PUBLIC_ACCOUNT_MONITORING_INFO_ITEM_4);
529 builder->Add("publicSessionSelectLanguage", IDS_LANGUAGE_SELECTION_SELECT); 529 builder->Add("publicSessionSelectLanguage", IDS_LANGUAGE_SELECTION_SELECT);
530 builder->Add("publicSessionSelectKeyboard", IDS_KEYBOARD_SELECTION_SELECT); 530 builder->Add("publicSessionSelectKeyboard", IDS_KEYBOARD_SELECTION_SELECT);
531 builder->Add("removeUserWarningTextNonSyncNoStats", base::string16()); 531 builder->Add("removeUserWarningTextNonSyncNoStats", base::string16());
532 builder->Add("removeUserWarningTextNonSyncCalculating", base::string16()); 532 builder->Add("removeUserWarningTextNonSyncCalculating", base::string16());
533 builder->Add("removeUserWarningTextHistory", base::string16()); 533 builder->Add("removeUserWarningTextHistory", base::string16());
534 builder->Add("removeUserWarningTextPasswords", base::string16()); 534 builder->Add("removeUserWarningTextPasswords", base::string16());
535 builder->Add("removeUserWarningTextBookmarks", base::string16()); 535 builder->Add("removeUserWarningTextBookmarks", base::string16());
536 builder->Add("removeUserWarningTextSettings", base::string16()); 536 builder->Add("removeUserWarningTextAutofill", base::string16());
537 builder->Add("removeUserWarningTextCalculating", base::string16()); 537 builder->Add("removeUserWarningTextCalculating", base::string16());
538 builder->Add("removeUserWarningTextSyncNoStats", base::string16()); 538 builder->Add("removeUserWarningTextSyncNoStats", base::string16());
539 builder->Add("removeUserWarningTextSyncCalculating", base::string16()); 539 builder->Add("removeUserWarningTextSyncCalculating", base::string16());
540 builder->AddF("removeLegacySupervisedUserWarningText", 540 builder->AddF("removeLegacySupervisedUserWarningText",
541 IDS_LOGIN_POD_LEGACY_SUPERVISED_USER_REMOVE_WARNING, 541 IDS_LOGIN_POD_LEGACY_SUPERVISED_USER_REMOVE_WARNING,
542 base::UTF8ToUTF16( 542 base::UTF8ToUTF16(
543 chrome::kLegacySupervisedUserManagementDisplayURL)); 543 chrome::kLegacySupervisedUserManagementDisplayURL));
544 builder->Add("removeNonOwnerUserWarningText", 544 builder->Add("removeNonOwnerUserWarningText",
545 IDS_LOGIN_POD_NON_OWNER_USER_REMOVE_WARNING); 545 IDS_LOGIN_POD_NON_OWNER_USER_REMOVE_WARNING);
546 builder->Add("removeUserWarningButtonTitle", 546 builder->Add("removeUserWarningButtonTitle",
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 rate.initial_delay_in_ms = auto_repeat_delay; 1706 rate.initial_delay_in_ms = auto_repeat_delay;
1707 rate.repeat_interval_in_ms = auto_repeat_interval; 1707 rate.repeat_interval_in_ms = auto_repeat_interval;
1708 input_method::InputMethodManager::Get() 1708 input_method::InputMethodManager::Get()
1709 ->GetImeKeyboard() 1709 ->GetImeKeyboard()
1710 ->SetAutoRepeatEnabled(true); 1710 ->SetAutoRepeatEnabled(true);
1711 input_method::InputMethodManager::Get()->GetImeKeyboard()->SetAutoRepeatRate( 1711 input_method::InputMethodManager::Get()->GetImeKeyboard()->SetAutoRepeatRate(
1712 rate); 1712 rate);
1713 } 1713 }
1714 1714
1715 } // namespace chromeos 1715 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698