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

Unified Diff: chrome/browser/policy/policy_status_info.cc

Issue 8413037: Display policy parsing errors in about:policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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/policy/policy_status_info.cc
diff --git a/chrome/browser/policy/policy_status_info.cc b/chrome/browser/policy/policy_status_info.cc
index 2b740df1f1972c018846526540e7c6b103bae8fd..2b6e9c7fddc708859ac5929ebc6d539d232e6b75 100644
--- a/chrome/browser/policy/policy_status_info.cc
+++ b/chrome/browser/policy/policy_status_info.cc
@@ -46,7 +46,7 @@ PolicyStatusInfo::~PolicyStatusInfo() {
DictionaryValue* PolicyStatusInfo::GetDictionaryValue() const {
string16 level_string = GetPolicyLevelString(level);
string16 source_type_string = GetSourceTypeString(source_type);
- string16 status_message = status == ENFORCED ? ASCIIToUTF16("ok")
+ string16 status_message = status == ENFORCED ? ASCIIToUTF16("OK")
Mattias Nissler (ping if slow) 2011/10/28 15:18:51 Can we use IDS_OK here?
Joao da Silva 2011/10/28 15:45:00 Done.
: error_message;
DictionaryValue* result = new DictionaryValue();
result->SetString(std::string(kNameDictPath), name);

Powered by Google App Engine
This is Rietveld 408576698