diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-28 14:41:03 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-28 14:41:03 +0000 |
commit | 426d676abc3b162c7d47f4bcfdc0a575e151595d (patch) | |
tree | 410166e7ffc29ffb85564d8f7b9396a997bd202f /components/policy | |
parent | 43e981b00ea7f8f2cd44adbad064bbaa22ca7f7c (diff) | |
download | chromium_src-426d676abc3b162c7d47f4bcfdc0a575e151595d.zip chromium_src-426d676abc3b162c7d47f4bcfdc0a575e151595d.tar.gz chromium_src-426d676abc3b162c7d47f4bcfdc0a575e151595d.tar.bz2 |
Change all component_strings references to be to components_strings
There is an inconsistency wherein some references to components strings are
"components_strings" (e.g., components_strings.grd), but some are
"component_strings" (e.g., the XTB and pakfiles). This CL changes all
references to "component_strings" to be to "components_strings":
- XTB files
- pakfiles
- generated header file
TBR=thakis
Review URL: https://codereview.chromium.org/307563003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273224 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/policy')
6 files changed, 6 insertions, 6 deletions
diff --git a/components/policy/core/browser/DEPS b/components/policy/core/browser/DEPS index 73c708d..a32eccf 100644 --- a/components/policy/core/browser/DEPS +++ b/components/policy/core/browser/DEPS @@ -2,7 +2,7 @@ include_rules = [ "+components/autofill/core/common", "+components/pref_registry", "+components/url_matcher", - "+grit/component_strings.h", + "+grit/components_strings.h", "+third_party/icu", "+ui/base/l10n", "+ui/base/resource", diff --git a/components/policy/core/browser/cloud/message_util.cc b/components/policy/core/browser/cloud/message_util.cc index ea9f65e..0b203df 100644 --- a/components/policy/core/browser/cloud/message_util.cc +++ b/components/policy/core/browser/cloud/message_util.cc @@ -5,7 +5,7 @@ #include "components/policy/core/browser/cloud/message_util.h" #include "base/logging.h" -#include "grit/component_strings.h" +#include "grit/components_strings.h" #include "ui/base/l10n/l10n_util.h" namespace policy { diff --git a/components/policy/core/browser/configuration_policy_handler.cc b/components/policy/core/browser/configuration_policy_handler.cc index 0a7aea8..f4918a6 100644 --- a/components/policy/core/browser/configuration_policy_handler.cc +++ b/components/policy/core/browser/configuration_policy_handler.cc @@ -15,7 +15,7 @@ #include "base/strings/string_util.h" #include "components/policy/core/browser/policy_error_map.h" #include "components/policy/core/common/policy_map.h" -#include "grit/component_strings.h" +#include "grit/components_strings.h" #include "url/gurl.h" namespace policy { diff --git a/components/policy/core/browser/configuration_policy_handler_list.cc b/components/policy/core/browser/configuration_policy_handler_list.cc index 0cc678f..b6f236c 100644 --- a/components/policy/core/browser/configuration_policy_handler_list.cc +++ b/components/policy/core/browser/configuration_policy_handler_list.cc @@ -10,7 +10,7 @@ #include "components/policy/core/browser/configuration_policy_handler_parameters.h" #include "components/policy/core/browser/policy_error_map.h" #include "components/policy/core/common/policy_map.h" -#include "grit/component_strings.h" +#include "grit/components_strings.h" namespace policy { ConfigurationPolicyHandlerList::ConfigurationPolicyHandlerList( diff --git a/components/policy/core/browser/policy_error_map.cc b/components/policy/core/browser/policy_error_map.cc index 8945304..f132f65 100644 --- a/components/policy/core/browser/policy_error_map.cc +++ b/components/policy/core/browser/policy_error_map.cc @@ -9,7 +9,7 @@ #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" -#include "grit/component_strings.h" +#include "grit/components_strings.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/resource/resource_bundle.h" diff --git a/components/policy/core/browser/url_blacklist_policy_handler.cc b/components/policy/core/browser/url_blacklist_policy_handler.cc index 86276ce..ee0863b 100644 --- a/components/policy/core/browser/url_blacklist_policy_handler.cc +++ b/components/policy/core/browser/url_blacklist_policy_handler.cc @@ -10,7 +10,7 @@ #include "components/policy/core/browser/policy_error_map.h" #include "components/policy/core/common/policy_map.h" #include "components/policy/core/common/policy_pref_names.h" -#include "grit/component_strings.h" +#include "grit/components_strings.h" #include "policy/policy_constants.h" namespace policy { |