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

Side by Side Diff: net/base/sdch_dictionary.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_BASE_SDCH_DICTIONARY_H_ 5 #ifndef NET_BASE_SDCH_DICTIONARY_H_
6 #define NET_BASE_SDCH_DICTIONARY_H_ 6 #define NET_BASE_SDCH_DICTIONARY_H_
7 7
8 #include <stddef.h>
9
8 #include <set> 10 #include <set>
9 #include <string> 11 #include <string>
10 12
11 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h" 15 #include "base/time/time.h"
14 #include "net/base/net_export.h" 16 #include "net/base/net_export.h"
15 #include "net/base/sdch_problem_codes.h" 17 #include "net/base/sdch_problem_codes.h"
16 #include "url/gurl.h" 18 #include "url/gurl.h"
17 19
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 const std::string path_; 103 const std::string path_;
102 const base::Time expiration_; // Implied by max-age. 104 const base::Time expiration_; // Implied by max-age.
103 const std::set<int> ports_; 105 const std::set<int> ports_;
104 106
105 void operator=(const SdchDictionary&) = delete; 107 void operator=(const SdchDictionary&) = delete;
106 }; 108 };
107 109
108 } // namespace net 110 } // namespace net
109 111
110 #endif // NET_BASE_SDCH_DICTIONARY_H_ 112 #endif // NET_BASE_SDCH_DICTIONARY_H_
OLDNEW
« no previous file with comments | « net/base/registry_controlled_domains/registry_controlled_domain.h ('k') | net/base/sdch_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698