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

Side by Side Diff: extensions/browser/api/system_network/system_network_api.cc

Issue 1162973005: Stop including ip_address_number.h from net_util.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove some header sorting changes, seems to be breaking windows Created 5 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
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 #include "extensions/browser/api/system_network/system_network_api.h" 5 #include "extensions/browser/api/system_network/system_network_api.h"
6 6
7 #include "net/base/ip_address_number.h"
8
7 namespace { 9 namespace {
8 const char kNetworkListError[] = "Network lookup failed or unsupported"; 10 const char kNetworkListError[] = "Network lookup failed or unsupported";
9 } // namespace 11 } // namespace
10 12
11 namespace extensions { 13 namespace extensions {
12 namespace core_api { 14 namespace core_api {
13 15
14 SystemNetworkGetNetworkInterfacesFunction:: 16 SystemNetworkGetNetworkInterfacesFunction::
15 SystemNetworkGetNetworkInterfacesFunction() { 17 SystemNetworkGetNetworkInterfacesFunction() {
16 } 18 }
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 create_arg.push_back(info); 76 create_arg.push_back(info);
75 } 77 }
76 78
77 results_ = core_api::system_network::GetNetworkInterfaces::Results::Create( 79 results_ = core_api::system_network::GetNetworkInterfaces::Results::Create(
78 create_arg); 80 create_arg);
79 SendResponse(true); 81 SendResponse(true);
80 } 82 }
81 83
82 } // namespace core_api 84 } // namespace core_api
83 } // namespace extensions 85 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/cast_channel/logger.h ('k') | media/cast/net/cast_transport_sender_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698