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

Side by Side Diff: chrome/browser/ui/webui/options/supervised_user_learn_more_handler.cc

Issue 384023002: Rename "managed (mode|user)" to "supervised user" (part 6) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: break long lines Created 6 years, 5 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 | Annotate | Revision Log
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 #include "chrome/browser/ui/webui/options/managed_user_learn_more_handler.h" 5 #include "chrome/browser/ui/webui/options/supervised_user_learn_more_handler.h"
6 6
7 #include "base/values.h" 7 #include "base/values.h"
8 #include "grit/generated_resources.h" 8 #include "grit/generated_resources.h"
9 9
10 namespace options { 10 namespace options {
11 11
12 ManagedUserLearnMoreHandler::ManagedUserLearnMoreHandler() { 12 SupervisedUserLearnMoreHandler::SupervisedUserLearnMoreHandler() {
13 } 13 }
14 14
15 ManagedUserLearnMoreHandler::~ManagedUserLearnMoreHandler() { 15 SupervisedUserLearnMoreHandler::~SupervisedUserLearnMoreHandler() {
16 } 16 }
17 17
18 void ManagedUserLearnMoreHandler::GetLocalizedValues( 18 void SupervisedUserLearnMoreHandler::GetLocalizedValues(
19 base::DictionaryValue* localized_strings) { 19 base::DictionaryValue* localized_strings) {
20 DCHECK(localized_strings); 20 DCHECK(localized_strings);
21 21
22 static OptionsStringResource resources[] = { 22 static OptionsStringResource resources[] = {
23 { "managedUserLearnMoreTitle", IDS_SUPERVISED_USER_LEARN_MORE_TITLE }, 23 { "managedUserLearnMoreTitle", IDS_SUPERVISED_USER_LEARN_MORE_TITLE },
24 { "managedUserLearnMoreText", IDS_SUPERVISED_USER_LEARN_MORE_TEXT }, 24 { "managedUserLearnMoreText", IDS_SUPERVISED_USER_LEARN_MORE_TEXT },
25 { "managedUserLearnMoreDone", IDS_SUPERVISED_USER_LEARN_MORE_DONE_BUTTON }, 25 { "managedUserLearnMoreDone", IDS_SUPERVISED_USER_LEARN_MORE_DONE_BUTTON },
26 }; 26 };
27 27
28 RegisterStrings(localized_strings, resources, arraysize(resources)); 28 RegisterStrings(localized_strings, resources, arraysize(resources));
29 } 29 }
30 30
31 } // namespace options 31 } // namespace options
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/supervised_user_learn_more_handler.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698