summaryrefslogtreecommitdiff
path: root/automation/source/testtool/httprequest.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-11 00:10:31 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-11 00:10:31 -0500
commit0c5893833bb680123b3a241618028c14f8793ff7 (patch)
tree6deb30f01f538460c5ff83a457b87174e2195842 /automation/source/testtool/httprequest.hxx
parentf81e36d56ed79d1d4d06d928dbf095966261dbca (diff)
merge vosremoval-socket patch
Diffstat (limited to 'automation/source/testtool/httprequest.hxx')
-rw-r--r--automation/source/testtool/httprequest.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/automation/source/testtool/httprequest.hxx b/automation/source/testtool/httprequest.hxx
index 44234239b81f..7864414cfa4c 100644
--- a/automation/source/testtool/httprequest.hxx
+++ b/automation/source/testtool/httprequest.hxx
@@ -37,10 +37,10 @@
#include <tools/string.hxx>
#include <tools/stream.hxx>
-namespace vos
+namespace osl
{
- class OStreamSocket;
- class OConnectorSocket;
+ class StreamSocket;
+ class ConnectorSocket;
}
class HttpRequest
@@ -52,14 +52,14 @@ class HttpRequest
USHORT nProxyPort;
USHORT nStatus;
- vos::OConnectorSocket *pOutSocket;
+ osl::ConnectorSocket *pOutSocket;
ByteString aHeader;
USHORT nResultId;
ByteString aContentType;
SvMemoryStream* pStream;
- void SendString( vos::OStreamSocket* pSocket, ByteString aText );
+ void SendString( osl::StreamSocket* pSocket, ByteString aText );
BOOL IsItem( ByteString aItem, ByteString aLine );
void Init();
public: