Chromium Code Reviews| Index: chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h |
| diff --git a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h |
| index 5bbb4fda89f5ef4efd2cab67809040d3226ab0b5..cd078c1828ae74f655a4c7dd049cc3300c855b8d 100644 |
| --- a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h |
| +++ b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h |
| @@ -11,7 +11,6 @@ |
| #include "base/memory/linked_ptr.h" |
| #include "chrome/browser/chromeos/settings/cros_settings.h" |
| #include "chrome/browser/ui/webui/options/core_options_handler.h" |
| -#include "chromeos/network/proxy/ui_proxy_config_service.h" |
| #include "content/public/browser/notification_observer.h" |
| #include "content/public/browser/notification_registrar.h" |
| @@ -68,7 +67,8 @@ class CoreChromeOSOptionsHandler : public ::options::CoreOptionsHandler, |
| content::NotificationRegistrar notification_registrar_; |
| - UIProxyConfigService proxy_config_service_; |
| + // Currently selected network id. |
| + std::string network_guid_; |
|
James Cook
2016/11/02 01:57:33
#include <string> for new usage of string
stevenjb
2016/11/02 18:03:41
Done.
|
| }; |
|
James Cook
2016/11/02 01:57:33
DISALLOW_COPY_AND_ASSIGN while you're here
stevenjb
2016/11/02 18:03:41
Done.
|
| } // namespace options |