Index: chrome/browser/profile.h |
=================================================================== |
--- chrome/browser/profile.h (revision 56956) |
+++ chrome/browser/profile.h (working copy) |
@@ -14,6 +14,13 @@ |
namespace base { |
class Time; |
} |
+ |
+#if defined(OS_CHROMEOS) |
+namespace chromeos { |
+class ProxyConfigServiceImpl; |
+} |
+#endif |
+ |
namespace history { |
class TopSites; |
} |
@@ -422,6 +429,12 @@ |
virtual FilePath last_selected_directory() = 0; |
virtual void set_last_selected_directory(const FilePath& path) = 0; |
+#if defined(OS_CHROMEOS) |
+ // Returns ChromeOS's ProxyConfigServiceImpl, creating if not yet created. |
+ virtual chromeos::ProxyConfigServiceImpl* |
+ GetChromeOSProxyConfigServiceImpl() = 0; |
+#endif // defined(OS_CHROMEOS) |
+ |
#ifdef UNIT_TEST |
// Use with caution. GetDefaultRequestContext may be called on any thread! |
static void set_default_request_context(URLRequestContextGetter* c) { |