| Index: net/sdch/sdch_owner_unittest.cc
|
| diff --git a/net/sdch/sdch_owner_unittest.cc b/net/sdch/sdch_owner_unittest.cc
|
| index 4a05a5960a401ef41185647683680f2e3ffb4b94..7fcfc16251b330b94bf252d145a637efda3890fe 100644
|
| --- a/net/sdch/sdch_owner_unittest.cc
|
| +++ b/net/sdch/sdch_owner_unittest.cc
|
| @@ -264,7 +264,7 @@ class MockSdchDictionaryFetcher : public SdchDictionaryFetcher {
|
|
|
| bool CompletePendingRequest(const GURL& dictionary_url,
|
| const std::string& dictionary_text,
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| bool was_from_cache) {
|
| for (std::vector<PendingRequest>::iterator it = requests_.begin();
|
| it != requests_.end(); ++it) {
|
| @@ -324,7 +324,7 @@ class SdchOwnerTest : public testing::Test {
|
|
|
| SdchManager& sdch_manager() { return sdch_manager_; }
|
| SdchOwner& sdch_owner() { return *(sdch_owner_.get()); }
|
| - BoundNetLog& bound_net_log() { return net_log_; }
|
| + NetLogWithSource& bound_net_log() { return net_log_; }
|
|
|
| int JobsRecentlyCreated() {
|
| int result = error_jobs_created - last_jobs_created_;
|
| @@ -397,7 +397,7 @@ class SdchOwnerTest : public testing::Test {
|
|
|
| private:
|
| int last_jobs_created_;
|
| - BoundNetLog net_log_;
|
| + NetLogWithSource net_log_;
|
| int dictionary_creation_index_;
|
|
|
| // The dependencies of these objects (sdch_owner_ -> {sdch_manager_,
|
| @@ -842,7 +842,7 @@ class SdchOwnerPersistenceTest : public ::testing::Test {
|
| }
|
|
|
| protected:
|
| - BoundNetLog net_log_;
|
| + NetLogWithSource net_log_;
|
| std::unique_ptr<SdchManager> manager_;
|
| MockSdchDictionaryFetcher* fetcher_;
|
| std::unique_ptr<SdchOwner> owner_;
|
|
|