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

Side by Side Diff: net/nqe/cached_network_quality.cc

Issue 2562113002: Fix header guards in //net. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « net/nqe/cached_network_quality.h ('k') | net/nqe/effective_connection_type.cc » ('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 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
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
OLDNEW
« no previous file with comments | « net/nqe/cached_network_quality.h ('k') | net/nqe/effective_connection_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698