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

Side by Side Diff: net/spdy/spdy_priority_forest.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/quic/quic_session_test.cc ('k') | net/tools/flip_server/epoll_server.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) 2013 The Chromium Authors. All rights reserved. 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 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_SPDY_SPDY_PRIORITY_FOREST_H_ 5 #ifndef NET_SPDY_SPDY_PRIORITY_FOREST_H_
6 #define NET_SPDY_SPDY_PRIORITY_FOREST_H_ 6 #define NET_SPDY_SPDY_PRIORITY_FOREST_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/hash_tables.h" 12 #include "base/containers/hash_tables.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/rand_util.h" 15 #include "base/rand_util.h"
16 16
17 namespace net { 17 namespace net {
18 18
19 // This data structure implements the SPDY prioriziation data structures 19 // This data structure implements the SPDY prioriziation data structures
20 // defined in this document: http://go/spdy4-prioritization 20 // defined in this document: http://go/spdy4-prioritization
21 // 21 //
22 // Nodes can be added and removed, and dependencies between them defined. Each 22 // Nodes can be added and removed, and dependencies between them defined. Each
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 child_id = GetChild(child_id); 518 child_id = GetChild(child_id);
519 ++count; 519 ++count;
520 } 520 }
521 } 521 }
522 return true; 522 return true;
523 } 523 }
524 524
525 } // namespace net 525 } // namespace net
526 526
527 #endif // NET_SPDY_SPDY_PRIORITY_FOREST_H_ 527 #endif // NET_SPDY_SPDY_PRIORITY_FOREST_H_
OLDNEW
« no previous file with comments | « net/quic/quic_session_test.cc ('k') | net/tools/flip_server/epoll_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698