diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-03 01:12:10 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-03 01:12:10 +0000 |
commit | a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6 (patch) | |
tree | 50945b9282b3e24d7275953e84c712cb34e8c188 /remoting/protocol | |
parent | 1523b746ecd2e88357deb710e891011cb55db9ab (diff) | |
download | chromium_src-a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6.zip chromium_src-a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6.tar.gz chromium_src-a4605c5a23b4d2fc5f15b8ab40293b6ecf223ea6.tar.bz2 |
Cleanup: Another round of unused forward declaration cleanup.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8598030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124808 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol')
-rw-r--r-- | remoting/protocol/client_control_dispatcher.h | 6 | ||||
-rw-r--r-- | remoting/protocol/client_event_dispatcher.h | 8 | ||||
-rw-r--r-- | remoting/protocol/host_control_dispatcher.h | 6 |
3 files changed, 6 insertions, 14 deletions
diff --git a/remoting/protocol/client_control_dispatcher.h b/remoting/protocol/client_control_dispatcher.h index cd6dd47..2550a2c 100644 --- a/remoting/protocol/client_control_dispatcher.h +++ b/remoting/protocol/client_control_dispatcher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -10,10 +10,6 @@ #include "remoting/protocol/host_stub.h" #include "remoting/protocol/message_reader.h" -namespace base { -class MessageLoopProxy; -} // namespace base - namespace remoting { namespace protocol { diff --git a/remoting/protocol/client_event_dispatcher.h b/remoting/protocol/client_event_dispatcher.h index 2e493eb..0b69401 100644 --- a/remoting/protocol/client_event_dispatcher.h +++ b/remoting/protocol/client_event_dispatcher.h @@ -1,9 +1,9 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. -#ifndef REMOTING_PROTOCOL_CLIENT_INPUT_DISPATCHER_H_ -#define REMOTING_PROTOCOL_CLIENT_INPUT_DISPATCHER_H_ +#ifndef REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ +#define REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ #include "base/memory/ref_counted.h" #include "remoting/protocol/channel_dispatcher_base.h" @@ -38,4 +38,4 @@ class ClientEventDispatcher : public ChannelDispatcherBase, public InputStub { } // namespace protocol } // namespace remoting -#endif // REMOTING_PROTOCOL_CLIENT_INPUT_DISPATCHER_H_ +#endif // REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ diff --git a/remoting/protocol/host_control_dispatcher.h b/remoting/protocol/host_control_dispatcher.h index 45c04fb..2bda655 100644 --- a/remoting/protocol/host_control_dispatcher.h +++ b/remoting/protocol/host_control_dispatcher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -10,10 +10,6 @@ #include "remoting/protocol/client_stub.h" #include "remoting/protocol/message_reader.h" -namespace base { -class MessageLoopProxy; -} // namespace base - namespace net { class StreamSocket; } // namespace net |