| Index: chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc b/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| index 3340b21dd2a7a162206f7207cfcdcfc51ff9760d..a330994e1adcdbb9b5088410772a96b9afc954a0 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| @@ -194,15 +194,11 @@ class TestProtocolManager : public SafeBrowsingProtocolManager {
|
| public:
|
| TestProtocolManager(SafeBrowsingService* sb_service,
|
| const std::string& client_name,
|
| - const std::string& client_key,
|
| - const std::string& wrapped_key,
|
| net::URLRequestContextGetter* request_context_getter,
|
| - const std::string& info_url_prefix,
|
| - const std::string& mackey_url_prefix,
|
| + const std::string& url_prefix,
|
| bool disable_auto_update)
|
| - : SafeBrowsingProtocolManager(sb_service, client_name, client_key,
|
| - wrapped_key, request_context_getter,
|
| - info_url_prefix, mackey_url_prefix,
|
| + : SafeBrowsingProtocolManager(sb_service, client_name,
|
| + request_context_getter, url_prefix,
|
| disable_auto_update),
|
| sb_service_(sb_service),
|
| delay_ms_(0) {
|
| @@ -249,16 +245,12 @@ class TestSBProtocolManagerFactory : public SBProtocolManagerFactory {
|
| virtual SafeBrowsingProtocolManager* CreateProtocolManager(
|
| SafeBrowsingService* sb_service,
|
| const std::string& client_name,
|
| - const std::string& client_key,
|
| - const std::string& wrapped_key,
|
| net::URLRequestContextGetter* request_context_getter,
|
| - const std::string& info_url_prefix,
|
| - const std::string& mackey_url_prefix,
|
| + const std::string& url_prefix,
|
| bool disable_auto_update) {
|
| pm_ = new TestProtocolManager(
|
| - sb_service, client_name, client_key, wrapped_key,
|
| - request_context_getter, info_url_prefix, mackey_url_prefix,
|
| - disable_auto_update);
|
| + sb_service, client_name, request_context_getter,
|
| + url_prefix, disable_auto_update);
|
| return pm_;
|
| }
|
| TestProtocolManager* GetProtocolManager() {
|
|
|