Windows should animate when they are about to get docked at screen edges.
[chromium-blink-merge.git] / net / tools / quic / test_tools / quic_epoll_connection_helper_peer.h
blob72085dfde1c922d8d1669f705a67c4155be8f45c
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_EPOLL_CONNECTION_HELPER_PEER_H_
6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_EPOLL_CONNECTION_HELPER_PEER_H_
8 #include "base/basictypes.h"
10 namespace net {
11 namespace tools {
13 class QuicPacketWriter;
14 class QuicEpollConnectionHelper;
16 namespace test {
18 class QuicEpollConnectionHelperPeer {
19 public:
20 static void SetWriter(QuicEpollConnectionHelper* helper,
21 QuicPacketWriter* writer);
23 private:
24 DISALLOW_COPY_AND_ASSIGN(QuicEpollConnectionHelperPeer);
27 } // namespace test
28 } // namespace tools
29 } // namespace net
31 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_EPOLL_CONNECTION_HELPER_PEER_H_