| Index: chrome/common/extensions/background_info.cc
|
| diff --git a/chrome/common/extensions/background_info.cc b/chrome/common/extensions/background_info.cc
|
| index dcce951f7cebaa01e9db3c10cae6a011c6c0812e..4862aa4810c02bc33d17314d0634a1ea0eb660ed 100644
|
| --- a/chrome/common/extensions/background_info.cc
|
| +++ b/chrome/common/extensions/background_info.cc
|
| @@ -12,21 +12,22 @@
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/extensions/extension_file_util.h"
|
| -#include "chrome/common/extensions/extension_manifest_constants.h"
|
| #include "chrome/common/extensions/permissions/api_permission_set.h"
|
| #include "chrome/common/extensions/permissions/permissions_data.h"
|
| #include "extensions/common/constants.h"
|
| #include "extensions/common/error_utils.h"
|
| +#include "extensions/common/manifest_constants.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| using base::DictionaryValue;
|
| -namespace keys = extensions::manifest_keys;
|
| -namespace values = extension_manifest_values;
|
| -namespace errors = extension_manifest_errors;
|
|
|
| namespace extensions {
|
|
|
| +namespace keys = manifest_keys;
|
| +namespace values = manifest_values;
|
| +namespace errors = manifest_errors;
|
| +
|
| namespace {
|
|
|
| const char kBackground[] = "background";
|
|
|