OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "net/nqe/cached_network_quality.h" | 5 #include "net/nqe/cached_network_quality.h" |
6 | 6 |
7 namespace net { | 7 namespace net { |
8 | 8 |
9 namespace nqe { | 9 namespace nqe { |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 bool CachedNetworkQuality::OlderThan( | 38 bool CachedNetworkQuality::OlderThan( |
39 const CachedNetworkQuality& cached_network_quality) const { | 39 const CachedNetworkQuality& cached_network_quality) const { |
40 return last_update_time_ < cached_network_quality.last_update_time_; | 40 return last_update_time_ < cached_network_quality.last_update_time_; |
41 } | 41 } |
42 | 42 |
43 } // namespace internal | 43 } // namespace internal |
44 | 44 |
45 } // namespace nqe | 45 } // namespace nqe |
46 | 46 |
47 } // namespace net | 47 } // namespace net |
OLD | NEW |