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

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

Issue 8727037: Signed settings refactoring: Proper caching and more tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to ToT and removed some debug output left. Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/ui/webui/options/chromeos/internet_options_handler.h" 5 #include "chrome/browser/ui/webui/options/chromeos/internet_options_handler.h"
6 6
7 #include <ctype.h> 7 #include <ctype.h>
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 14 matching lines...) Expand all
25 #include "chrome/browser/browser_process.h" 25 #include "chrome/browser/browser_process.h"
26 #include "chrome/browser/chromeos/choose_mobile_network_dialog.h" 26 #include "chrome/browser/chromeos/choose_mobile_network_dialog.h"
27 #include "chrome/browser/chromeos/cros/cros_library.h" 27 #include "chrome/browser/chromeos/cros/cros_library.h"
28 #include "chrome/browser/chromeos/cros/network_library.h" 28 #include "chrome/browser/chromeos/cros/network_library.h"
29 #include "chrome/browser/chromeos/cros_settings.h" 29 #include "chrome/browser/chromeos/cros_settings.h"
30 #include "chrome/browser/chromeos/mobile_config.h" 30 #include "chrome/browser/chromeos/mobile_config.h"
31 #include "chrome/browser/chromeos/options/network_config_view.h" 31 #include "chrome/browser/chromeos/options/network_config_view.h"
32 #include "chrome/browser/chromeos/proxy_config_service_impl.h" 32 #include "chrome/browser/chromeos/proxy_config_service_impl.h"
33 #include "chrome/browser/chromeos/sim_dialog_delegate.h" 33 #include "chrome/browser/chromeos/sim_dialog_delegate.h"
34 #include "chrome/browser/chromeos/status/network_menu_icon.h" 34 #include "chrome/browser/chromeos/status/network_menu_icon.h"
35 #include "chrome/browser/chromeos/user_cros_settings_provider.h" 35 #include "chrome/browser/chromeos/device_settings_provider.h"
Mattias Nissler (ping if slow) 2011/11/30 12:25:50 required?
pastarmovj 2011/11/30 17:21:16 Done.
36 #include "chrome/browser/net/pref_proxy_config_tracker.h" 36 #include "chrome/browser/net/pref_proxy_config_tracker.h"
37 #include "chrome/browser/profiles/profile.h" 37 #include "chrome/browser/profiles/profile.h"
38 #include "chrome/browser/ui/browser.h" 38 #include "chrome/browser/ui/browser.h"
39 #include "chrome/browser/ui/browser_list.h" 39 #include "chrome/browser/ui/browser_list.h"
40 #include "chrome/browser/ui/browser_window.h" 40 #include "chrome/browser/ui/browser_window.h"
41 #include "chrome/browser/ui/dialog_style.h" 41 #include "chrome/browser/ui/dialog_style.h"
42 #include "chrome/browser/ui/views/window.h" 42 #include "chrome/browser/ui/views/window.h"
43 #include "chrome/browser/ui/webui/web_ui_util.h" 43 #include "chrome/browser/ui/webui/web_ui_util.h"
44 #include "chrome/common/chrome_notification_types.h" 44 #include "chrome/common/chrome_notification_types.h"
45 #include "chrome/common/chrome_switches.h" 45 #include "chrome/common/chrome_switches.h"
(...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1328 dictionary->Set("wirelessList", GetWirelessList()); 1328 dictionary->Set("wirelessList", GetWirelessList());
1329 dictionary->Set("vpnList", GetVPNList()); 1329 dictionary->Set("vpnList", GetVPNList());
1330 dictionary->Set("rememberedList", GetRememberedList()); 1330 dictionary->Set("rememberedList", GetRememberedList());
1331 dictionary->SetBoolean("wifiAvailable", cros_->wifi_available()); 1331 dictionary->SetBoolean("wifiAvailable", cros_->wifi_available());
1332 dictionary->SetBoolean("wifiBusy", cros_->wifi_busy()); 1332 dictionary->SetBoolean("wifiBusy", cros_->wifi_busy());
1333 dictionary->SetBoolean("wifiEnabled", cros_->wifi_enabled()); 1333 dictionary->SetBoolean("wifiEnabled", cros_->wifi_enabled());
1334 dictionary->SetBoolean("cellularAvailable", cros_->cellular_available()); 1334 dictionary->SetBoolean("cellularAvailable", cros_->cellular_available());
1335 dictionary->SetBoolean("cellularBusy", cros_->cellular_busy()); 1335 dictionary->SetBoolean("cellularBusy", cros_->cellular_busy());
1336 dictionary->SetBoolean("cellularEnabled", cros_->cellular_enabled()); 1336 dictionary->SetBoolean("cellularEnabled", cros_->cellular_enabled());
1337 } 1337 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698