Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: net/tools/flip_server/epoll_server.h

Issue 16667019: Rename base/hash_tables to base/containers/hash_tables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/spdy/spdy_priority_forest.h ('k') | net/tools/quic/quic_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_TOOLS_FLIP_SERVER_EPOLL_SERVER_H_ 5 #ifndef NET_TOOLS_FLIP_SERVER_EPOLL_SERVER_H_
6 #define NET_TOOLS_FLIP_SERVER_EPOLL_SERVER_H_ 6 #define NET_TOOLS_FLIP_SERVER_EPOLL_SERVER_H_
7 7
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #include <sys/queue.h> 9 #include <sys/queue.h>
10 #include <map> 10 #include <map>
(...skipping 16 matching lines...) Expand all
27 // A structure called 'EventRecorder' will exist when 27 // A structure called 'EventRecorder' will exist when
28 // the macro is defined. See the EventRecorder class interface 28 // the macro is defined. See the EventRecorder class interface
29 // within the EpollServer class for more details. 29 // within the EpollServer class for more details.
30 #ifdef EPOLL_SERVER_EVENT_TRACING 30 #ifdef EPOLL_SERVER_EVENT_TRACING
31 #include <ostream> 31 #include <ostream>
32 #include "base/logging.h" 32 #include "base/logging.h"
33 #endif 33 #endif
34 34
35 #include "base/basictypes.h" 35 #include "base/basictypes.h"
36 #include "base/compiler_specific.h" 36 #include "base/compiler_specific.h"
37 #include "base/hash_tables.h" 37 #include "base/containers/hash_tables.h"
38 #include "base/memory/scoped_ptr.h" 38 #include "base/memory/scoped_ptr.h"
39 #include <sys/epoll.h> 39 #include <sys/epoll.h>
40 40
41 namespace net { 41 namespace net {
42 42
43 class EpollServer; 43 class EpollServer;
44 class EpollAlarmCallbackInterface; 44 class EpollAlarmCallbackInterface;
45 class ReadPipeCallback; 45 class ReadPipeCallback;
46 46
47 struct EpollEvent { 47 struct EpollEvent {
(...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after
1045 private: 1045 private:
1046 EpollServer::AlarmRegToken token_; 1046 EpollServer::AlarmRegToken token_;
1047 EpollServer* eps_; 1047 EpollServer* eps_;
1048 bool registered_; 1048 bool registered_;
1049 }; 1049 };
1050 1050
1051 } // namespace net 1051 } // namespace net
1052 1052
1053 #endif // NET_TOOLS_FLIP_SERVER_EPOLL_SERVER_H_ 1053 #endif // NET_TOOLS_FLIP_SERVER_EPOLL_SERVER_H_
1054 1054
OLDNEW
« no previous file with comments | « net/spdy/spdy_priority_forest.h ('k') | net/tools/quic/quic_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698