diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-26 23:08:24 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-26 23:08:24 +0000 |
commit | 32b76eff6f630b9bcc0fc3f3bad826f3d1217dda (patch) | |
tree | a5687726e4f145c715c73cbbff23e88ac2192eb9 /base/crypto | |
parent | 7cf4d5505378a983947d8c989841f1f378f19cde (diff) | |
download | chromium_src-32b76eff6f630b9bcc0fc3f3bad826f3d1217dda.zip chromium_src-32b76eff6f630b9bcc0fc3f3bad826f3d1217dda.tar.gz chromium_src-32b76eff6f630b9bcc0fc3f3bad826f3d1217dda.tar.bz2 |
`#pragma once` for app, base, chrome, gfx, ipc, net, skia, views
BUG=50273
TEST=everything still builds, build is 10% faster on windows, same speed on mac/linux
TBR: erg
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/crypto')
-rw-r--r-- | base/crypto/capi_util.h | 1 | ||||
-rw-r--r-- | base/crypto/cssm_init.h | 1 | ||||
-rw-r--r-- | base/crypto/encryptor.h | 1 | ||||
-rw-r--r-- | base/crypto/rsa_private_key.h | 1 | ||||
-rw-r--r-- | base/crypto/scoped_capi_types.h | 1 | ||||
-rw-r--r-- | base/crypto/scoped_nss_types.h | 1 | ||||
-rw-r--r-- | base/crypto/signature_creator.h | 1 | ||||
-rw-r--r-- | base/crypto/signature_verifier.h | 1 | ||||
-rw-r--r-- | base/crypto/symmetric_key.h | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/base/crypto/capi_util.h b/base/crypto/capi_util.h index 42adfe1..8f89828 100644 --- a/base/crypto/capi_util.h +++ b/base/crypto/capi_util.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_CAPI_UTIL_H_ #define BASE_CRYPTO_CAPI_UTIL_H_ +#pragma once #include <windows.h> #include <wincrypt.h> diff --git a/base/crypto/cssm_init.h b/base/crypto/cssm_init.h index b5ec03d..a066542 100644 --- a/base/crypto/cssm_init.h +++ b/base/crypto/cssm_init.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_CSSM_INIT_H_ #define BASE_CRYPTO_CSSM_INIT_H_ +#pragma once #include <Security/cssm.h> diff --git a/base/crypto/encryptor.h b/base/crypto/encryptor.h index 5267549..f1d6f28 100644 --- a/base/crypto/encryptor.h +++ b/base/crypto/encryptor.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_ENCRYPTOR_H_ #define BASE_CRYPTO_ENCRYPTOR_H_ +#pragma once #include <string> diff --git a/base/crypto/rsa_private_key.h b/base/crypto/rsa_private_key.h index 9c8bfd4..64095fb 100644 --- a/base/crypto/rsa_private_key.h +++ b/base/crypto/rsa_private_key.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_RSA_PRIVATE_KEY_H_ #define BASE_CRYPTO_RSA_PRIVATE_KEY_H_ +#pragma once #include "build/build_config.h" diff --git a/base/crypto/scoped_capi_types.h b/base/crypto/scoped_capi_types.h index bdb05c3..d6582a7b 100644 --- a/base/crypto/scoped_capi_types.h +++ b/base/crypto/scoped_capi_types.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_SCOPED_CAPI_TYPES_H_ #define BASE_CRYPTO_SCOPED_CAPI_TYPES_H_ +#pragma once #include <windows.h> #include <wincrypt.h> diff --git a/base/crypto/scoped_nss_types.h b/base/crypto/scoped_nss_types.h index c1c84c1..664251f 100644 --- a/base/crypto/scoped_nss_types.h +++ b/base/crypto/scoped_nss_types.h @@ -4,6 +4,7 @@ #ifndef BASE_SCOPED_NSS_TYPES_H_ #define BASE_SCOPED_NSS_TYPES_H_ +#pragma once #include <nss.h> #include <pk11pub.h> diff --git a/base/crypto/signature_creator.h b/base/crypto/signature_creator.h index 0e11ec3..38e327b 100644 --- a/base/crypto/signature_creator.h +++ b/base/crypto/signature_creator.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_SIGNATURE_CREATOR_H_ #define BASE_CRYPTO_SIGNATURE_CREATOR_H_ +#pragma once #include "build/build_config.h" diff --git a/base/crypto/signature_verifier.h b/base/crypto/signature_verifier.h index 1ef08cf..4746edc 100644 --- a/base/crypto/signature_verifier.h +++ b/base/crypto/signature_verifier.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_SIGNATURE_VERIFIER_H_ #define BASE_CRYPTO_SIGNATURE_VERIFIER_H_ +#pragma once #include "build/build_config.h" diff --git a/base/crypto/symmetric_key.h b/base/crypto/symmetric_key.h index 1c91649..d7259be 100644 --- a/base/crypto/symmetric_key.h +++ b/base/crypto/symmetric_key.h @@ -4,6 +4,7 @@ #ifndef BASE_CRYPTO_SYMMETRIC_KEY_H_ #define BASE_CRYPTO_SYMMETRIC_KEY_H_ +#pragma once #include <string> |