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

Side by Side Diff: net/socket/websocket_endpoint_lock_manager.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SOCKET_WEBSOCKET_ENDPOINT_LOCK_MANAGER_H_ 5 #ifndef NET_SOCKET_WEBSOCKET_ENDPOINT_LOCK_MANAGER_H_
6 #define NET_SOCKET_WEBSOCKET_ENDPOINT_LOCK_MANAGER_H_ 6 #define NET_SOCKET_WEBSOCKET_ENDPOINT_LOCK_MANAGER_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 11
10 #include "base/containers/linked_list.h" 12 #include "base/containers/linked_list.h"
11 #include "base/logging.h" 13 #include "base/logging.h"
12 #include "base/macros.h" 14 #include "base/macros.h"
13 #include "base/memory/singleton.h" 15 #include "base/memory/singleton.h"
14 #include "base/time/time.h" 16 #include "base/time/time.h"
15 #include "net/base/ip_endpoint.h" 17 #include "net/base/ip_endpoint.h"
16 #include "net/base/net_export.h" 18 #include "net/base/net_export.h"
17 #include "net/socket/websocket_transport_client_socket_pool.h" 19 #include "net/socket/websocket_transport_client_socket_pool.h"
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 base::WeakPtrFactory<WebSocketEndpointLockManager> weak_factory_; 149 base::WeakPtrFactory<WebSocketEndpointLockManager> weak_factory_;
148 150
149 friend struct base::DefaultSingletonTraits<WebSocketEndpointLockManager>; 151 friend struct base::DefaultSingletonTraits<WebSocketEndpointLockManager>;
150 152
151 DISALLOW_COPY_AND_ASSIGN(WebSocketEndpointLockManager); 153 DISALLOW_COPY_AND_ASSIGN(WebSocketEndpointLockManager);
152 }; 154 };
153 155
154 } // namespace net 156 } // namespace net
155 157
156 #endif // NET_SOCKET_WEBSOCKET_ENDPOINT_LOCK_MANAGER_H_ 158 #endif // NET_SOCKET_WEBSOCKET_ENDPOINT_LOCK_MANAGER_H_
OLDNEW
« no previous file with comments | « net/socket/unix_domain_server_socket_posix.cc ('k') | net/socket/websocket_endpoint_lock_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698