diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-16 21:37:26 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-16 21:37:26 +0000 |
commit | 3fe636ec39ff6a36ecffa70849f9a49571d66c07 (patch) | |
tree | 9ac669d1dedb2f62fdd1d8dd1acedf09d91e54dd /base/third_party | |
parent | 0864f78951396a96a9ae91801612002f7e7a58c6 (diff) | |
download | chromium_src-3fe636ec39ff6a36ecffa70849f9a49571d66c07.zip chromium_src-3fe636ec39ff6a36ecffa70849f9a49571d66c07.tar.gz chromium_src-3fe636ec39ff6a36ecffa70849f9a49571d66c07.tar.bz2 |
Adjust comment following r29182 post-commit feedback.
Put now-unused macros back to how they are upstream.
BUG=24911
TEST=none
Review URL: http://codereview.chromium.org/289003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29328 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/third_party')
-rw-r--r-- | base/third_party/nspr/prtypes.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/base/third_party/nspr/prtypes.h b/base/third_party/nspr/prtypes.h index d65e16a..39a9724 100644 --- a/base/third_party/nspr/prtypes.h +++ b/base/third_party/nspr/prtypes.h @@ -91,11 +91,10 @@ #if 1 /* -** Chrome-local change: the portions of NSPR used for Chrome are -** implementation details of Chrome's base module. NSPR symbols do not need -** to be exported beyond the module in which they are used. For all -** platforms, avoid decorating functions with specific visibility and access -** keywords. +** Local change: the portions of NSPR used by the base module are +** implementation details. NSPR symbols do not need to be exported beyond +** the base module. For all platforms, avoid decorating functions with +** specific visibility and access keywords. */ #define PR_EXPORT(__type) extern __type @@ -116,11 +115,11 @@ #define PR_EXPORT(__type) extern __declspec(dllexport) __type #define PR_EXPORT_DATA(__type) extern __declspec(dllexport) __type -#define PR_IMPORT(__type) extern __type +#define PR_IMPORT(__type) __declspec(dllimport) __type #define PR_IMPORT_DATA(__type) __declspec(dllimport) __type #define PR_EXTERN(__type) extern __declspec(dllexport) __type -#define PR_IMPLEMENT(__type) __type +#define PR_IMPLEMENT(__type) __declspec(dllexport) __type #define PR_EXTERN_DATA(__type) extern __declspec(dllexport) __type #define PR_IMPLEMENT_DATA(__type) __declspec(dllexport) __type |