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

Side by Side Diff: chrome/browser/net/service_providers_win.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/net/service_providers_win.h" 5 #include "chrome/browser/net/service_providers_win.h"
6 6
7 #include <winsock2.h> 7 #include <winsock2.h>
8 #include <Ws2spi.h> 8 #include <Ws2spi.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
12 #include "base/values.h" 13 #include "base/values.h"
13 14
14 WinsockLayeredServiceProvider::WinsockLayeredServiceProvider() { 15 WinsockLayeredServiceProvider::WinsockLayeredServiceProvider() {
15 } 16 }
16 17
17 WinsockLayeredServiceProvider::~WinsockLayeredServiceProvider() { 18 WinsockLayeredServiceProvider::~WinsockLayeredServiceProvider() {
18 } 19 }
19 20
20 void GetWinsockNamespaceProviders( 21 void GetWinsockNamespaceProviders(
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 &path_length, &error)) { 94 &path_length, &error)) {
94 service_provider.path = path; 95 service_provider.path = path;
95 } 96 }
96 97
97 service_list->push_back(service_provider); 98 service_list->push_back(service_provider);
98 } 99 }
99 100
100 return; 101 return;
101 } 102 }
102 103
OLDNEW
« no previous file with comments | « chrome/browser/net/sdch_browsertest.cc ('k') | chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698