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..82df4831ee5f2b1c7aae2429ae972e04e0fbe703 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 |
| @@ -6,12 +6,12 @@ |
| #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CORE_CHROMEOS_OPTIONS_HANDLER_H_ |
| #include <map> |
| +#include <memory> |
|
James Cook
2016/11/01 23:02:04
Why memory but not <string>?
stevenjb
2016/11/01 23:55:11
removed
|
| #include "base/compiler_specific.h" |
| #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 +68,8 @@ class CoreChromeOSOptionsHandler : public ::options::CoreOptionsHandler, |
| content::NotificationRegistrar notification_registrar_; |
| - UIProxyConfigService proxy_config_service_; |
| + // Currently selected network id. |
| + std::string network_guid_; |
| }; |
| } // namespace options |