Index: chrome/browser/profiles/profile.h |
=================================================================== |
--- chrome/browser/profiles/profile.h (revision 106059) |
+++ chrome/browser/profiles/profile.h (working copy) |
@@ -25,6 +25,12 @@ |
class ResetDefaultProxyConfigServiceTask; |
} |
+#if defined(OS_CHROMEOS) |
+namespace chromeos { |
+class ProxyConfigServiceImpl; |
+} |
+#endif // defined(OS_CHROMEOS) |
+ |
namespace fileapi { |
class FileSystemContext; |
class SandboxedFileSystemContext; |
@@ -479,7 +485,11 @@ |
// Returns the helper object that provides the proxy configuration service |
// access to the the proxy configuration possibly defined by preferences. |
+#if defined(OS_CHROMEOS) |
+ virtual chromeos::ProxyConfigServiceImpl* GetProxyConfigTracker() = 0; |
+#else |
virtual PrefProxyConfigTracker* GetProxyConfigTracker() = 0; |
+#endif // defined(OS_CHROMEOS) |
// Returns the Predictor object used for dns prefetch. |
virtual chrome_browser_net::Predictor* GetNetworkPredictor() = 0; |