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

Side by Side Diff: net/dns/record_rdata.h

Issue 145873006: ui/base/resource: Roll our own version of ReadBigEndian() function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for gcp20_device Created 6 years, 10 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
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_DNS_RECORD_RDATA_H_ 5 #ifndef NET_DNS_RECORD_RDATA_H_
6 #define NET_DNS_RECORD_RDATA_H_ 6 #define NET_DNS_RECORD_RDATA_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/big_endian.h"
tfarina 2014/02/26 02:54:24 note to myself: remove, unused?
tfarina 2014/02/26 02:54:24 Done.
12 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
13 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
14 #include "base/strings/string_piece.h" 15 #include "base/strings/string_piece.h"
15 #include "net/base/big_endian.h"
16 #include "net/base/net_export.h" 16 #include "net/base/net_export.h"
17 #include "net/base/net_util.h" 17 #include "net/base/net_util.h"
18 #include "net/dns/dns_protocol.h" 18 #include "net/dns/dns_protocol.h"
19 19
20 namespace net { 20 namespace net {
21 21
22 class DnsRecordParser; 22 class DnsRecordParser;
23 23
24 // Parsed represenation of the extra data in a record. Does not include standard 24 // Parsed represenation of the extra data in a record. Does not include standard
25 // DNS record data such as TTL, Name, Type and Class. 25 // DNS record data such as TTL, Name, Type and Class.
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 std::vector<uint8> bitmap_; 209 std::vector<uint8> bitmap_;
210 210
211 DISALLOW_COPY_AND_ASSIGN(NsecRecordRdata); 211 DISALLOW_COPY_AND_ASSIGN(NsecRecordRdata);
212 }; 212 };
213 213
214 214
215 } // namespace net 215 } // namespace net
216 216
217 #endif // NET_DNS_RECORD_RDATA_H_ 217 #endif // NET_DNS_RECORD_RDATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698