Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1580)

Unified Diff: chrome/test/testing_profile.h

Issue 5005002: Dynamically refresh pref-configured proxies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Jochen's comments. Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/testing_profile.h
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h
index dbfa2667ae1eea4313ede08754e27586551d8920..de7f32faffe01df0d15887a5dd6b0feed35e4542 100644
--- a/chrome/test/testing_profile.h
+++ b/chrome/test/testing_profile.h
@@ -294,6 +294,8 @@ class TestingProfile : public Profile {
}
#endif // defined(OS_CHROMEOS)
+ virtual PrefProxyConfigTracker* GetProxyConfigTracker();
+
// Schedules a task on the history backend and runs a nested loop until the
// task is processed. This has the effect of blocking the caller until the
// history service processes all pending requests.
@@ -404,6 +406,9 @@ class TestingProfile : public Profile {
// is disposed.
scoped_refptr<ExtensionsService> extensions_service_;
+ // The proxy prefs tracker.
+ scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
+
// We use a temporary directory to store testing profile data.
ScopedTempDir temp_dir_;
};

Powered by Google App Engine
This is Rietveld 408576698