diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 21:47:52 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 21:47:52 +0000 |
commit | 2e936d97d73807c42a7c34863206d1de213626fc (patch) | |
tree | c07c68d26b904b6069b87db98d1679e5af5e4b73 /net/ftp/ftp_transaction_factory.h | |
parent | 8419eb65d1f53275cc852429b89b3ca7619def9a (diff) | |
download | chromium_src-2e936d97d73807c42a7c34863206d1de213626fc.zip chromium_src-2e936d97d73807c42a7c34863206d1de213626fc.tar.gz chromium_src-2e936d97d73807c42a7c34863206d1de213626fc.tar.bz2 |
Ftp: Add NET_API for net.dll
BUG=76997
TEST=NONE
Review URL: http://codereview.chromium.org/7013067
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85818 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ftp/ftp_transaction_factory.h')
-rw-r--r-- | net/ftp/ftp_transaction_factory.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/ftp/ftp_transaction_factory.h b/net/ftp/ftp_transaction_factory.h index f979714..30ec14d 100644 --- a/net/ftp/ftp_transaction_factory.h +++ b/net/ftp/ftp_transaction_factory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,12 +6,14 @@ #define NET_FTP_FTP_TRANSACTION_FACTORY_H_ #pragma once +#include "net/base/net_api.h" + namespace net { class FtpTransaction; // An interface to a class that can create FtpTransaction objects. -class FtpTransactionFactory { +class NET_API FtpTransactionFactory { public: virtual ~FtpTransactionFactory() {} |