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

Side by Side Diff: ppapi/proxy/host_resolver_resource_base.h

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 4 years, 12 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 | « ppapi/proxy/host_resolver_resource.h ('k') | ppapi/proxy/host_var_serialization_rules.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ 5 #ifndef PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_
6 #define PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ 6 #define PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_
7 7
8 #include <stdint.h>
9
8 #include <string> 10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
14 #include "ppapi/c/private/ppb_host_resolver_private.h" 16 #include "ppapi/c/private/ppb_host_resolver_private.h"
15 #include "ppapi/proxy/plugin_resource.h" 17 #include "ppapi/proxy/plugin_resource.h"
16 #include "ppapi/proxy/ppapi_proxy_export.h" 18 #include "ppapi/proxy/ppapi_proxy_export.h"
17 19
18 namespace ppapi { 20 namespace ppapi {
19 21
20 class TrackedCallback; 22 class TrackedCallback;
21 23
22 struct HostPortPair { 24 struct HostPortPair {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 std::string canonical_name_; 67 std::string canonical_name_;
66 std::vector<scoped_refptr<NetAddressResource> > net_address_list_; 68 std::vector<scoped_refptr<NetAddressResource> > net_address_list_;
67 69
68 DISALLOW_COPY_AND_ASSIGN(HostResolverResourceBase); 70 DISALLOW_COPY_AND_ASSIGN(HostResolverResourceBase);
69 }; 71 };
70 72
71 } // namespace proxy 73 } // namespace proxy
72 } // namespace ppapi 74 } // namespace ppapi
73 75
74 #endif // PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_ 76 #endif // PPAPI_PROXY_HOST_RESOLVER_RESOURCE_BASE_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/host_resolver_resource.h ('k') | ppapi/proxy/host_var_serialization_rules.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698