diff options
Diffstat (limited to 'chrome/browser/google_apis/base_requests_unittest.cc')
-rw-r--r-- | chrome/browser/google_apis/base_requests_unittest.cc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/chrome/browser/google_apis/base_requests_unittest.cc b/chrome/browser/google_apis/base_requests_unittest.cc index aaca989..a0a3f36 100644 --- a/chrome/browser/google_apis/base_requests_unittest.cc +++ b/chrome/browser/google_apis/base_requests_unittest.cc @@ -30,9 +30,7 @@ class FakeGetDataRequest : public GetDataRequest { virtual ~FakeGetDataRequest() { } - void NotifyStart() { - NotifyStartToRequestRegistry(); - } + using RequestRegistry::Request::NotifyStart; protected: virtual GURL GetURL() const OVERRIDE { @@ -64,9 +62,9 @@ class BaseRequestsTest : public testing::Test { virtual void SetUp() OVERRIDE { profile_.reset(new TestingProfile); runner_.reset(new RequestSender(profile_.get(), - NULL /* url_request_context_getter */, - std::vector<std::string>() /* scopes */, - std::string() /* custom user agent */)); + NULL /* url_request_context_getter */, + std::vector<std::string>() /* scopes */, + std::string() /* custom user agent */)); runner_->Initialize(); LOG(ERROR) << "Initialized."; } |