diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 22:43:20 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 22:43:20 +0000 |
commit | f0a04c42aaf23a3f3c36a231905052ae9f86790f (patch) | |
tree | 98c4d870e903f987069df03f69b5e5f31e45cb96 /ppapi/shared_impl/url_request_info_impl.h | |
parent | 6ed0388cbf008ea2c07ef81ef967f0639f982887 (diff) | |
download | chromium_src-f0a04c42aaf23a3f3c36a231905052ae9f86790f.zip chromium_src-f0a04c42aaf23a3f3c36a231905052ae9f86790f.tar.gz chromium_src-f0a04c42aaf23a3f3c36a231905052ae9f86790f.tar.bz2 |
Create ppapi_proxy.dll and ppapi_shared.dll.
This involves introducing the following macros:
PPAPI_PROXY_EXPORT - for symbols exported from ppapi/proxy
PPAPI_SHARED_EXPORT - for symbols exported from ppapi/shared_impl
PPAPI_THUNK_EXPORT - for symbols exported from ppapi/thunk
NOTE: shared_impl and thunk are still linked together, but I thought
it was cleaner to give thunk its own macro.
R=brettw@chromium.org
Review URL: http://codereview.chromium.org/7687005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98508 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl/url_request_info_impl.h')
-rw-r--r-- | ppapi/shared_impl/url_request_info_impl.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ppapi/shared_impl/url_request_info_impl.h b/ppapi/shared_impl/url_request_info_impl.h index 622f8c5..9c619f9 100644 --- a/ppapi/shared_impl/url_request_info_impl.h +++ b/ppapi/shared_impl/url_request_info_impl.h @@ -18,8 +18,8 @@ namespace thunk { class PPB_FileRef_API; } -struct PPB_URLRequestInfo_Data { - struct BodyItem { +struct PPAPI_SHARED_EXPORT PPB_URLRequestInfo_Data { + struct PPAPI_SHARED_EXPORT BodyItem { BodyItem(); explicit BodyItem(const std::string& data); BodyItem(Resource* file_ref, @@ -90,8 +90,9 @@ struct PPB_URLRequestInfo_Data { // ppapi_messages.h }; -class URLRequestInfoImpl : public ::ppapi::Resource, - public ::ppapi::thunk::PPB_URLRequestInfo_API { +class PPAPI_SHARED_EXPORT URLRequestInfoImpl + : public ::ppapi::Resource, + public ::ppapi::thunk::PPB_URLRequestInfo_API { public: // This constructor initializes the object as a proxy object with the given // host resource. |