| Index: chrome/browser/io_thread.h
|
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
|
| index 85210ba1abdb46ce0de8348ce584a049ddf91364..84503476f914d32b5235760eafa86c4ee478493d 100644
|
| --- a/chrome/browser/io_thread.h
|
| +++ b/chrome/browser/io_thread.h
|
| @@ -425,6 +425,17 @@ class IOThread : public content::BrowserThreadDelegate {
|
| // Returns the callback for updating data use prefs.
|
| const metrics::UpdateUsagePrefCallbackType& GetMetricsDataUseForwarder();
|
|
|
| + // Returns true if the indicated proxy resolution features are
|
| + // enabled. These features are controlled through
|
| + // preferences/policy/commandline.
|
| + //
|
| + // For a description of what these features are, and how they are
|
| + // configured, see the comments in pref_names.cc for
|
| + // |kQuickCheckEnabled| and |kPacHttpsUrlStrippingEnabled
|
| + // respectively.
|
| + bool WpadQuickCheckEnabled() const;
|
| + bool PacHttpsUrlStrippingEnabled() const;
|
| +
|
| private:
|
| // Provide SystemURLRequestContextGetter with access to
|
| // InitSystemRequestContext().
|
| @@ -516,6 +527,8 @@ class IOThread : public content::BrowserThreadDelegate {
|
|
|
| BooleanPrefMember quick_check_enabled_;
|
|
|
| + BooleanPrefMember pac_https_url_stripping_enabled_;
|
| +
|
| // Store HTTP Auth-related policies in this thread.
|
| // TODO(aberent) Make the list of auth schemes a PrefMember, so that the
|
| // policy can change after startup (https://crbug/549273).
|
|
|