// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/media/router/discovery/discovery_network_list_wifi.h" #include <string.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <sys/types.h> #include <linux/wireless.h> #include "base/check.h" #include "base/files/scoped_file.h" #include "net/base/network_interfaces_linux.h" namespace media_router { bool MaybeGetWifiSSID(const std::string& if_name, std::string* ssid_out) { … } } // namespace media_router