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

Unified Diff: chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc

Issue 11975015: This adds a private extension API to use for simple networking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Converting to ONC Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
index 71cf6d9a90cae70fbb15d467cd242a31ba86b811..c869752cb8d1d8c124b9eb5cf916e445213e5083 100644
--- a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
@@ -521,7 +521,7 @@ void PopulateVPNDetails(
hostname_ui_data.ParseOncProperty(
vpn->ui_data(), &onc,
base::StringPrintf("%s.%s",
- chromeos::onc::kVPN,
+ chromeos::onc::network_config::kVPN,
chromeos::onc::vpn::kHost));
SetValueDictionary(dictionary, kTagServerHostname,
new base::StringValue(vpn->server_hostname()),
@@ -1345,7 +1345,7 @@ void InternetOptionsHandler::PopulateIPConfigsCallback(
auto_connect_ui_data.ParseOncProperty(
ui_data, onc,
base::StringPrintf("%s.%s",
- chromeos::onc::kWiFi,
+ chromeos::onc::network_config::kWiFi,
chromeos::onc::wifi::kAutoConnect));
}
SetValueDictionary(&dictionary, kTagAutoConnect,

Powered by Google App Engine
This is Rietveld 408576698