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

Side by Side Diff: components/wifi_sync/network_state_helper_chromeos.h

Issue 709683004: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-1-security-class
Patch Set: address style issues from stevenjb's review of PS9 Created 6 years 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_WIFI_SYNC_NETWORK_STATE_HELPER_CHROMEOS_H_
6 #define COMPONENTS_WIFI_SYNC_NETWORK_STATE_HELPER_CHROMEOS_H_
7
8 #include <string>
9
10 #include "components/wifi_sync/wifi_credential.h"
11
12 namespace chromeos {
13 class NetworkStateHandler;
14 }
15
16 // Functions which deal with ChromeOS-specific network state.
erikwright (departed) 2014/12/08 21:21:36 This comment is confusing (1 since it is on a name
mukesh agrawal 2014/12/09 01:45:27 Done.
17 namespace wifi_sync {
18
19 // Returns a platform-agnostic representation of the ChromeOS network
20 // configuration state. The configuration state is filtered, so that
21 // only items related to ChromeOS |shill_profile_path| are returned.
22 WifiCredential::CredentialSet GetWifiCredentialsForShillProfile(
23 chromeos::NetworkStateHandler* network_state_handler,
24 const std::string& shill_profile_path);
25
26 } // namespace wifi_sync
27
28 #endif // COMPONENTS_WIFI_SYNC_NETWORK_STATE_HELPER_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698