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

Side by Side Diff: net/dns/record_parsed.cc

Issue 2901103002: Fix closing namespace comments in //net. (Closed)
Patch Set: Rebase. Created 3 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
« no previous file with comments | « net/disk_cache/simple/simple_util.cc ('k') | net/http/http_auth_gssapi_posix.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 (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 #include "net/dns/record_parsed.h" 5 #include "net/dns/record_parsed.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "net/dns/dns_response.h" 10 #include "net/dns/dns_response.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 if (is_mdns) { 81 if (is_mdns) {
82 klass &= dns_protocol::kMDnsClassMask; 82 klass &= dns_protocol::kMDnsClassMask;
83 other_klass &= dns_protocol::kMDnsClassMask; 83 other_klass &= dns_protocol::kMDnsClassMask;
84 } 84 }
85 85
86 return name_ == other->name_ && 86 return name_ == other->name_ &&
87 klass == other_klass && 87 klass == other_klass &&
88 type_ == other->type_ && 88 type_ == other->type_ &&
89 rdata_->IsEqual(other->rdata_.get()); 89 rdata_->IsEqual(other->rdata_.get());
90 } 90 }
91 } 91
92 } // namespace net
OLDNEW
« no previous file with comments | « net/disk_cache/simple/simple_util.cc ('k') | net/http/http_auth_gssapi_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698