OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // See header file for description of class | 5 // See header file for description of class |
6 | 6 |
7 #include "chrome/browser/net/dns_master.h" | 7 #include "chrome/browser/net/dns_master.h" |
8 | 8 |
9 #include <sstream> | 9 #include <set> |
10 | 10 |
11 #include "base/histogram.h" | 11 #include "base/histogram.h" |
12 #include "base/stats_counters.h" | 12 #include "base/stats_counters.h" |
13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
14 #include "base/thread.h" | 14 #include "base/thread.h" |
15 #include "base/win_util.h" | 15 #include "base/win_util.h" |
16 #include "chrome/browser/net/dns_slave.h" | 16 #include "chrome/browser/net/dns_slave.h" |
17 | 17 |
18 using base::TimeDelta; | 18 using base::TimeDelta; |
19 | 19 |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 if (!motivating_host->Get(1, &subresource_list)) | 578 if (!motivating_host->Get(1, &subresource_list)) |
579 continue; | 579 continue; |
580 if (motivating_referrer.empty()) | 580 if (motivating_referrer.empty()) |
581 continue; | 581 continue; |
582 referrers_[motivating_referrer].Deserialize(*subresource_list); | 582 referrers_[motivating_referrer].Deserialize(*subresource_list); |
583 } | 583 } |
584 } | 584 } |
585 | 585 |
586 } // namespace chrome_browser_net | 586 } // namespace chrome_browser_net |
587 | 587 |
OLD | NEW |