diff options
author | olli.raula <olli.raula@intel.com> | 2015-09-01 00:41:53 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-01 07:42:23 +0000 |
commit | 80a44bef6973ac271a24285ddb49edf36e7513ca (patch) | |
tree | 99423e71eed10f36d2482fc67b92ca54362daae4 /cloud_print/gcp20 | |
parent | 19f4e52034f423a02260e1eaeae31301033a1c7a (diff) | |
download | chromium_src-80a44bef6973ac271a24285ddb49edf36e7513ca.zip chromium_src-80a44bef6973ac271a24285ddb49edf36e7513ca.tar.gz chromium_src-80a44bef6973ac271a24285ddb49edf36e7513ca.tar.bz2 |
Stop including network_interfaces.h from net_util.h
network_interfaces.h is splitted off of net_utils.h
( https://codereview.chromium.org/1154323007 ) but leaved to be included in it. Fixed includes in consumers to call both or just one of them.
BUG=488531
Review URL: https://codereview.chromium.org/1290723003
Cr-Commit-Position: refs/heads/master@{#346591}
Diffstat (limited to 'cloud_print/gcp20')
-rw-r--r-- | cloud_print/gcp20/prototype/printer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud_print/gcp20/prototype/printer.cc b/cloud_print/gcp20/prototype/printer.cc index 8a09a9c..fe01e59 100644 --- a/cloud_print/gcp20/prototype/printer.cc +++ b/cloud_print/gcp20/prototype/printer.cc @@ -27,7 +27,7 @@ #include "cloud_print/gcp20/prototype/service_parameters.h" #include "cloud_print/gcp20/prototype/special_io.h" #include "cloud_print/version.h" -#include "net/base/net_util.h" +#include "net/base/network_interfaces.h" #include "net/base/url_util.h" const char kPrinterStatePathDefault[] = "printer_state.json"; |