diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-10 16:53:42 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-10 16:53:42 +0000 |
commit | df4956ec32c4899aa79ec529e9525dabfd051e03 (patch) | |
tree | f694e6bad1469ba4fec5c3259c70c6802680174c /chrome | |
parent | 3a33198fb7ef66d933cc6475329333ac735a0d5e (diff) | |
download | chromium_src-df4956ec32c4899aa79ec529e9525dabfd051e03.zip chromium_src-df4956ec32c4899aa79ec529e9525dabfd051e03.tar.gz chromium_src-df4956ec32c4899aa79ec529e9525dabfd051e03.tar.bz2 |
Dummy change to fix "svn: Inconsistent line ending style"
TEST=none
BUG=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/extensions/extensions_service_unittest.cc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chrome/browser/extensions/extensions_service_unittest.cc b/chrome/browser/extensions/extensions_service_unittest.cc index 720b3a6..768ad55 100644 --- a/chrome/browser/extensions/extensions_service_unittest.cc +++ b/chrome/browser/extensions/extensions_service_unittest.cc @@ -31,19 +31,19 @@ #include "base/registry.h" #endif -// Extension ids used during testing. -static const char* all_zero = "0000000000000000000000000000000000000000"; -static const char* zero_n_one = "0000000000000000000000000000000000000001"; -static const char* good0 = "00123456789abcdef0123456789abcdef0123456"; -static const char* good1 = "10123456789abcdef0123456789abcdef0123456"; -static const char* good2 = "20123456789abcdef0123456789abcdef0123456"; -static const char* good_crx = "00123456789abcdef0123456789abcdef0123456"; -static const char* page_action = "8a5e4cb023c61b431e9b603a97c293429ce057c8"; -static const char* theme_crx = "f0123456789abcdef0123456789abcdef0126456"; -static const char* theme2_crx = "f0123456789adddef0123456789abcdef0126456"; - namespace { +// Extension ids used during testing. +const char* const all_zero = "0000000000000000000000000000000000000000"; +const char* const zero_n_one = "0000000000000000000000000000000000000001"; +const char* const good0 = "00123456789abcdef0123456789abcdef0123456"; +const char* const good1 = "10123456789abcdef0123456789abcdef0123456"; +const char* const good2 = "20123456789abcdef0123456789abcdef0123456"; +const char* const good_crx = "00123456789abcdef0123456789abcdef0123456"; +const char* const page_action = "8a5e4cb023c61b431e9b603a97c293429ce057c8"; +const char* const theme_crx = "f0123456789abcdef0123456789abcdef0126456"; +const char* const theme2_crx = "f0123456789adddef0123456789abcdef0126456"; + struct ExtensionsOrder { bool operator()(const Extension* a, const Extension* b) { return a->name() < b->name(); @@ -454,8 +454,8 @@ TEST_F(ExtensionsServiceTest, PackExtension) { // Test Packaging and installing an extension using an openssl generated key. // The openssl is generated with the following: -// > openssl genrsa -out privkey.pem 1024
-// > openssl pkcs8 -topk8 -nocrypt -in privkey.pem -out privkey_asn1.pem
+// > openssl genrsa -out privkey.pem 1024 +// > openssl pkcs8 -topk8 -nocrypt -in privkey.pem -out privkey_asn1.pem // The privkey.pem is a PrivateKey, and the pcks8 -topk8 creates a // PrivateKeyInfo ASN.1 structure, we our RSAPrivateKey expects. TEST_F(ExtensionsServiceTest, PackExtensionOpenSSLKey) { |