| Index: extensions/common/error_utils.h
|
| diff --git a/chrome/common/extensions/extension_error_utils.h b/extensions/common/error_utils.h
|
| similarity index 87%
|
| rename from chrome/common/extensions/extension_error_utils.h
|
| rename to extensions/common/error_utils.h
|
| index 4745ca088f176245cd285b4395c0ff806e25e572..f63f4da1628977ef7d48ce3a749fc9a9454887d9 100644
|
| --- a/chrome/common/extensions/extension_error_utils.h
|
| +++ b/extensions/common/error_utils.h
|
| @@ -2,14 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_ERROR_UTILS_H_
|
| -#define CHROME_COMMON_EXTENSIONS_EXTENSION_ERROR_UTILS_H_
|
| +#ifndef EXTENSIONS_COMMON_ERROR_UTILS_H_
|
| +#define EXTENSIONS_COMMON_ERROR_UTILS_H_
|
|
|
| #include <string>
|
|
|
| #include "base/string16.h"
|
|
|
| -class ExtensionErrorUtils {
|
| +namespace extensions {
|
| +
|
| +class ErrorUtils {
|
| public:
|
| // Creates an error messages from a pattern.
|
| static std::string FormatErrorMessage(const std::string& format,
|
| @@ -37,4 +39,6 @@ class ExtensionErrorUtils {
|
| const std::string& s3);
|
| };
|
|
|
| -#endif // CHROME_COMMON_EXTENSIONS_EXTENSION_ERROR_UTILS_H_
|
| +} // namespace extensions
|
| +
|
| +#endif // EXTENSIONS_COMMON_ERROR_UTILS_H_
|
|
|