summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-18 01:50:08 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-18 01:50:08 +0000
commitd2798d24c2eec2bd03c833506746428bb857802c (patch)
treea75415d1a1ee68cf9390a616221fa00476302545 /remoting
parent2cf1f69983bc8e627004d73b910f8f62bc21e0ab (diff)
downloadchromium_src-d2798d24c2eec2bd03c833506746428bb857802c.zip
chromium_src-d2798d24c2eec2bd03c833506746428bb857802c.tar.gz
chromium_src-d2798d24c2eec2bd03c833506746428bb857802c.tar.bz2
Cleanup: Remove forward declarations in various directories.
BUG=none TEST=none Review URL: http://codereview.chromium.org/8567022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110631 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/protocol/connection_to_client.h6
-rw-r--r--remoting/protocol/jingle_datagram_connector.h4
2 files changed, 1 insertions, 9 deletions
diff --git a/remoting/protocol/connection_to_client.h b/remoting/protocol/connection_to_client.h
index 418e071..a721a48 100644
--- a/remoting/protocol/connection_to_client.h
+++ b/remoting/protocol/connection_to_client.h
@@ -14,10 +14,6 @@
#include "remoting/protocol/session.h"
#include "remoting/protocol/video_writer.h"
-namespace base {
-class MessageLoopProxy;
-} // namespace base
-
namespace remoting {
namespace protocol {
@@ -52,7 +48,7 @@ class ConnectionToClient : public base::NonThreadSafe {
// Constructs a ConnectionToClient object for the |session|. Takes
// ownership of |session|.
- ConnectionToClient(Session* session);
+ explicit ConnectionToClient(Session* session);
virtual ~ConnectionToClient();
// Set |event_handler| for connection events. |event_handler| is
diff --git a/remoting/protocol/jingle_datagram_connector.h b/remoting/protocol/jingle_datagram_connector.h
index bbd7e944..621bbee 100644
--- a/remoting/protocol/jingle_datagram_connector.h
+++ b/remoting/protocol/jingle_datagram_connector.h
@@ -11,10 +11,6 @@
#include "remoting/protocol/jingle_channel_connector.h"
#include "remoting/protocol/session.h"
-namespace jingle_glue {
-class TransportChannelSocketAdapter;
-} // namespace jingle_glue
-
namespace remoting {
namespace protocol {